编写题解 1118: Tom数 摘要:解题思路:注意事项:参考代码:while True: try: n = str(input()) sum = 0 for i in n: …… 题解列表 2021年12月10日 0 点赞 0 评论 196 浏览 评分:0.0
1118: Tom数-题解(python) 摘要:解题思路:注意事项:参考代码:while True: a = input() l = [] for i in a: l.append(int(i)) m = su…… 题解列表 2021年10月19日 0 点赞 0 评论 123 浏览 评分:0.0
python用map函数只需要三行 摘要:解题思路: 输入数据 处理数据: 用map函数处理字符串,在python3中map函数是返回的迭代器,所以使用list(map())可以将字符串处理成…… 题解列表 2021年04月11日 0 点赞 0 评论 369 浏览 评分:6.0
Tom数-题解(Python代码) 摘要:```python import sys while True: line = sys.stdin.readline().strip() if not line: …… 题解列表 2021年04月11日 0 点赞 0 评论 223 浏览 评分:0.0
python解决Tom数 摘要:参考代码:def DigitCount(n): result = 0 while n != 0: result += n % 10 题解列表 2021年03月20日 0 点赞 0 评论 208 浏览 评分:0.0
几行代码解决||python 摘要:解题思路:输入的皆为字符串,那么字符串的每个字符是可以得到,将其转为int类型再相加即可。注意事项:参考代码:while True: m = input() l = 0 for i …… 题解列表 2021年03月02日 0 点赞 0 评论 270 浏览 评分:6.0
Tom数-题解(Python代码)拆分成字符串 摘要:解题思路:注意事项:参考代码:while(1): str=input() s=0 for i in str: …… 题解列表 2020年07月22日 0 点赞 0 评论 252 浏览 评分:0.0
Tom数-题解(Python代码) 摘要:###Python 一行解决 ``eval() 函数可以用于计算字符串表达式的值`` `例如:eval("2*2") ==4 True ` 上代码 ```python try: …… 题解列表 2020年02月25日 0 点赞 0 评论 739 浏览 评分:6.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 评论 576 浏览 评分:0.0
Tom数-题解(Python代码) 摘要:代码如下: ```python while True: print(sum([int(i) for i in input()])) ``` 循环加sum函数,然后里面将输入的字符串遍…… 题解列表 2020年02月01日 0 点赞 0 评论 539 浏览 评分:0.0