题解 1118: Tom数

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

筛选

编写题解 1118: Tom数

摘要:解题思路:注意事项:参考代码:while True:    try:        n = str(input())        sum = 0        for i in n:        ……

1118: Tom数-题解(python)

摘要:解题思路:注意事项:参考代码:while True:    a = input()    l = []    for i in a:        l.append(int(i))    m = su……

python用map函数只需要三行

摘要:解题思路:    输入数据    处理数据:                    用map函数处理字符串,在python3中map函数是返回的迭代器,所以使用list(map())可以将字符串处理成……

python解决Tom数

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

几行代码解决||python

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

Tom数-题解(Python代码)

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

Tom数-题解(Python代码)

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