python字符串输入输出函数 摘要:def GetReal(): x=input() return xdef GetString(): X=input() return Xdef main(): while…… 题解列表 2023年02月19日 0 点赞 0 评论 87 浏览 评分:9.9
很简单的输入输出,按照格式来就可以了 摘要:解题思路:注意事项:有点不太明白这个问题的意义,可能是其他语言的练习题目吧我自己想太多了参考代码:def getreal(): nu=input() return nudef getstr…… 题解列表 2022年06月30日 0 点赞 0 评论 101 浏览 评分:0.0
小南解题-字符串输入输出函数--41ms 摘要:'''2022年03月10日 22:05:22.157zgn946''' a=input()b=input() print('please in…… 题解列表 2022年06月27日 0 点赞 0 评论 64 浏览 评分:0.0
字符串输入输出函数-题解 摘要:def GetReal(inpn): print(inpn) def GetString(inps): print(inps) def main(): inpn = …… 题解列表 2022年03月05日 0 点赞 0 评论 168 浏览 评分:0.0
字符串输入输出函数-题解(Python代码) 摘要:解题思路:注意事项:参考代码:def get1(): a=float(input("please input a number:\n")) return adef get2(): b…… 题解列表 2020年11月18日 0 点赞 2 评论 519 浏览 评分:9.9
字符串输入输出函数-题解(Python代码) 摘要:代码:print("please input a number:") str1 = input() print("please input a string:") str2 = input() …… 题解列表 2020年09月10日 0 点赞 1 评论 432 浏览 评分:7.3
字符串输入输出函数-题解(Python代码) 摘要:```python def GetReal(a): return a def GetString(b): return b def main(): while …… 题解列表 2020年02月07日 0 点赞 0 评论 850 浏览 评分:9.9