思路简单清晰的解法(用列表) 摘要:解题思路:直接用列表存下一行数,再用pop删去第一个数,然后用map映射将列表里的数全部加绝对值,最后求和注意事项:参考代码:while True: l=list(map(int,input()…… 题解列表 2022年07月27日 0 点赞 0 评论 293 浏览 评分:0.0
列表的循环输入,利用列表切片和求和 摘要:解题思路:注意事项:参考代码:while True: a=list(map(int,input().split())) a=a[1:] for i in a: xx=a…… 题解列表 2022年04月06日 0 点赞 0 评论 266 浏览 评分:0.0
题解 1390: 大神老白(python) 摘要:while True: try: num=list(map(int,input().strip().split())) ls = num[1:] lt = [abs(i) for…… 题解列表 2021年12月24日 0 点赞 0 评论 164 浏览 评分:0.0
大神老白-题解(Python代码) 摘要:#### 来给python开个山,代码供上:kissing_heart: ```python while True: sum = 0 num_lis = [int(i) for…… 题解列表 2021年01月25日 0 点赞 0 评论 324 浏览 评分:7.3