编写题解 1034: [编程入门]自定义函数之数字分离(python) 摘要:[题目1034:[编程入门]自定义函数之数字分离](https://www.dotcpp.com/oj/problem1034.html?sid=18058228&lang=6#editor) …… 题解列表 2024年10月24日 1 点赞 0 评论 142 浏览 评分:9.9
自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:def fenli(a): for i in a: print(i,end=' ')a = input()fenli(a)…… 题解列表 2024年06月03日 0 点赞 0 评论 108 浏览 评分:0.0
自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:def function(x): return print(' '.join(x)) if __name__ == '__main…… 题解列表 2024年04月18日 0 点赞 0 评论 91 浏览 评分:0.0
自定义函数之数字分离 摘要:解题思路:注意事项:注意审题,是每个数字间用空格隔开参考代码:number = input()for i in number: print(int(i), end = " ")…… 题解列表 2023年11月16日 0 点赞 0 评论 86 浏览 评分:9.9
format方法... 摘要:解题思路:注意事项:参考代码:a,b,c,d = map(int,input())print('{} {} {} {}'.format(a,b,c,d))…… 题解列表 2023年10月13日 0 点赞 0 评论 71 浏览 评分:0.0
编写题解 1034: [编程入门]自定义函数之数字分离,有比较细节的地方 摘要:解题思路:利用for循环注意事项:直接用input函数不用外面嵌套int,这也是这个题应该注意的地方参考代码:def q():#直接用q带过了 a = input()#直接便利了字符串,而外面有…… 题解列表 2022年11月23日 0 点赞 0 评论 61 浏览 评分:0.0
1034 自定义函数之数字分离 摘要:参考代码: #凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数for i in input():print(i,end=" ")…… 题解列表 2022年05月17日 0 点赞 0 评论 211 浏览 评分:9.9
不难啊,我第二个自己写出来的必须发题解 摘要:解题思路:每个字符后面加个空格字符就行了,不难注意事项:因为题目要求自己定义,呼应他,设置个简单的函数参考代码:def fenli(): for i in it: print(i,…… 题解列表 2022年05月09日 0 点赞 0 评论 160 浏览 评分:9.9
1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:n = input(str())for i in n: print(i,end = ' ')…… 题解列表 2022年04月07日 0 点赞 0 评论 271 浏览 评分:0.0
简洁的题解 摘要:解题思路:对字符串进行操作注意事项:无参考代码:x = input()def f(string): print(string.replace('',' ').st…… 题解列表 2022年04月06日 0 点赞 0 评论 173 浏览 评分:9.9