我已经花了几周的时间来学习 python,我正在尝试编写一个脚本,该脚本可以输入任意长度的数字并将它们拆分为一个字符的长度。像这样:输入:
123456
输出:
1 2 3 4 5 6
我需要在不使用字符串的情况下执行此操作,最好使用 divmod... 像这样:
s = int(input("enter numbers you want to split:"))
while s > 0:
s, remainder = divmod(s, 10)
我不确定如何正确设置间距。
感谢您的帮助。