题解列表

筛选

拆分位数-题解(Python代码)

摘要:将输入的数字当成字符串,和输出列表的内容一样的方式直接输出 ```python num = input() print('%s %s %s'%(num[2],num[1],num[0])) `……