题解列表

筛选

Tom数-题解(Python代码)

摘要:代码如下: ```python while True: print(sum([int(i) for i in input()])) ``` 循环加sum函数,然后里面将输入的字符串遍……