题解列表

筛选

数字整除-题解(Python代码)

摘要:#### 虽然繁琐,但是简单明了,代码呈上!! ```python n = list(input()) num_lis = [] while int(n[0]) != 0: #数据输入 ……