题解列表

筛选

IP判断的一种解题Python

摘要:解题思路:注意事项:不知道为什么,有前导0的存在也提交正确参考代码:while True:    str1 = input()    list1 = list(str1.split('.&#3……

编写题解 1093: 字符逆序

摘要:参考代码:my_str = list(map(str, input()))for i in my_str[::-1]:    print(i, end="")                     ……

简单python走起

摘要:解题思路:注意事项:参考代码:n=int(input())a='A'for i in range(1,n):    a=a+chr(65+i)+aprint(a)    ……

简单python走起 14行

摘要:解题思路:注意事项:参考代码:n=int(int(input()))mas=[list(map(int,input().strip().split()))for i in range(n)]mas_1……

简单python走起

摘要:解题思路:注意事项:参考代码:while True:    mas=list(map(int,input().split()))    mas.pop(0)    mas.sort(reverse=T……

简单python走起

摘要:解题思路:注意事项:参考代码:while True:    n=int(input())    if 90<=n<=100:        print(&#39;A&#39;)    elif 75<……

简单python走起

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