题解列表

筛选

最简单(自定义函数之字符串反转)

摘要:解题思路:注意事项:参考代码:错误思路:对字符串进行降序正确思路:对字符串进行逆序操作def person(n):     print(n[::-1]) n=input() person(n)……

python-摆花摆花

摘要:解题思路:注意事项:参考代码:def f(n,m):       num = [0] + [int(i) for i in input().strip().split()]       dp = ……

1行代码直接ac

摘要:解题思路:注意事项:参考代码 : while True: print(sum([int(i) for i in input()]))……

利用列表求得最大值

摘要:解题思路:注意事项:参考代码:while True:    a=list(map(int,input().split()))    if a==[0]:        break    a=a[1:]……

超简短代码

摘要:解题思路:注意事项:参考代码:while True:    a,b=map(int,input().split())    print(a+b)    print()……

while循环的持续输入

摘要:解题思路:注意事项:参考代码:while True:    a,b=map(int,input().split())    print(a+b)……