Tom数-题解(Python代码) 摘要:python input的返回值是字符串,故直接求和即可。 ```python x=input() while x: print(sum([int(i) for i in x])) …… 题解列表 2019年09月07日 0 点赞 0 评论 1492 浏览 评分:9.2
Tom数-题解(Python代码) 摘要:# python3.6 ```python import math while(1): z,w,d,num=0,0,0,0 x=int(input()) x_s=str(x) …… 题解列表 2019年12月20日 0 点赞 0 评论 714 浏览 评分:0.0
Tom数-题解(Python代码) 摘要:```python def calc(): while True: n = input() try: digitlist = …… 题解列表 2019年12月27日 0 点赞 0 评论 942 浏览 评分:0.0
Tom数-题解(Python代码) 摘要:代码如下: ```python while True: print(sum([int(i) for i in input()])) ``` 循环加sum函数,然后里面将输入的字符串遍…… 题解列表 2020年02月01日 0 点赞 0 评论 528 浏览 评分:0.0
Tom数-题解(Python代码) 摘要:```python k=100 while k>0: n=str(input()) l=[] s=0 for i in n: l.append(i) for j in l…… 题解列表 2020年02月05日 0 点赞 1 评论 555 浏览 评分:0.0
Tom数-题解(Python代码) 摘要:###Python 一行解决 ``eval() 函数可以用于计算字符串表达式的值`` `例如:eval("2*2") ==4 True ` 上代码 ```python try: …… 题解列表 2020年02月25日 0 点赞 0 评论 730 浏览 评分:6.0
Tom数-题解(Python代码)拆分成字符串 摘要:解题思路:注意事项:参考代码:while(1): str=input() s=0 for i in str: …… 题解列表 2020年07月22日 0 点赞 0 评论 238 浏览 评分:0.0
几行代码解决||python 摘要:解题思路:输入的皆为字符串,那么字符串的每个字符是可以得到,将其转为int类型再相加即可。注意事项:参考代码:while True: m = input() l = 0 for i …… 题解列表 2021年03月02日 0 点赞 0 评论 260 浏览 评分:6.0
python解决Tom数 摘要:参考代码:def DigitCount(n): result = 0 while n != 0: result += n % 10 题解列表 2021年03月20日 0 点赞 0 评论 205 浏览 评分:0.0
Tom数-题解(Python代码) 摘要:```python import sys while True: line = sys.stdin.readline().strip() if not line: …… 题解列表 2021年04月11日 0 点赞 0 评论 221 浏览 评分:0.0