题解列表

筛选

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

摘要:直接使用列表即可 输入之后 逐行输出 使用字符串直接输出应该也可以 题目简单就不多介绍 ```python n = list(str(input())) for i in n: ……