自定义函数之数字分离(适合新手理解) 摘要:解题思路:注意事项:参考代码:注意事项:一定要注意格式 和审题def person_pratice(n): for i in str(n): print(int(i),en…… 题解列表 2022年04月06日 0 点赞 0 评论 215 浏览 评分:9.9
[编程入门]自定义函数之数字分离-题解(Python代码) python 摘要:```python a = input() #输入 for i in a: #遍历 print(i,end=" ") #格式化输出 当输出字符后以空格结尾(end=" ") ``…… 题解列表 2019年11月21日 0 点赞 2 评论 809 浏览 评分:9.9
1034 自定义函数之数字分离 摘要:参考代码: #凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数凑字数for i in input():print(i,end=" ")…… 题解列表 2022年05月17日 0 点赞 0 评论 218 浏览 评分:9.9
编写题解 1034: [编程入门]自定义函数之数字分离(python) 摘要:[题目1034:[编程入门]自定义函数之数字分离](https://www.dotcpp.com/oj/problem1034.html?sid=18058228&lang=6#editor) …… 题解列表 2024年10月24日 1 点赞 0 评论 158 浏览 评分:9.9
简洁的题解 摘要:解题思路:对字符串进行操作注意事项:无参考代码:x = input()def f(string): print(string.replace('',' ').st…… 题解列表 2022年04月06日 0 点赞 0 评论 180 浏览 评分:9.9
不难啊,我第二个自己写出来的必须发题解 摘要:解题思路:每个字符后面加个空格字符就行了,不难注意事项:因为题目要求自己定义,呼应他,设置个简单的函数参考代码:def fenli(): for i in it: print(i,…… 题解列表 2022年05月09日 0 点赞 0 评论 168 浏览 评分:9.9
自定义函数之数字分离 摘要:解题思路:注意事项:注意审题,是每个数字间用空格隔开参考代码:number = input()for i in number: print(int(i), end = " ")…… 题解列表 2023年11月16日 0 点赞 0 评论 91 浏览 评分:9.9
1034: [编程入门]自定义函数之数字分离-题解(python代码) 摘要:解题思路:迭代字符串注意事项:print()输出会自动换行参考代码:a = input()for i in a: print(i,end=' ')…… 题解列表 2021年10月14日 0 点赞 0 评论 295 浏览 评分:6.0
[编程入门]自定义函数之数字分离-题解(Python代码) 摘要:直接迭代遍历。。。。。。。。。。。。。。。。。。。。。。。。。 str = input() for value in str: print(value, end=" ")…… 题解列表 2019年11月24日 0 点赞 0 评论 614 浏览 评分:6.0
[编程入门]自定义函数之数字分离-题解(Python代码) 摘要:``` li=input() a =[i for i in li] #列表的正则表达式,生成一个元素为字符的列表 b=iter(a) #生成一个迭代器 print(f'{next(b)} …… 题解列表 2019年12月06日 0 点赞 0 评论 853 浏览 评分:4.7