题解 1118: Tom数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

Tom数-题解(Python代码)

摘要:python input的返回值是字符串,故直接求和即可。 ```python x=input() while x: print(sum([int(i) for i in x])) ……

Tom数-题解(Python代码)

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

Tom数-题解(Python代码)

摘要:###Python 一行解决 ``eval() 函数可以用于计算字符串表达式的值`` `例如:eval("2*2") ==4 True ` 上代码 ```python try: ……

几行代码解决||python

摘要:解题思路:输入的皆为字符串,那么字符串的每个字符是可以得到,将其转为int类型再相加即可。注意事项:参考代码:while True:    m = input()    l = 0    for i ……

python解决Tom数

摘要:参考代码:def DigitCount(n):     result = 0     while n != 0:         result += n % 10