题解列表

筛选

编写题解 1116: IP判断

摘要:解题思路:把.作为分隔,分别判断字符串是不是属于0-255注意事项:参考代码:while True:    try:        n = input()        ls=[]        if……

1014: [编程入门]阶乘求和

摘要:解题思路:先搞清楚思路,再编程序注意事项:参考代码:n=int(input())Sn=0x=1for i in range(1,n+1):    for j in range(1,n+1):     ……

python50%错误

摘要:解题思路:不知道错在哪里注意事项:参考代码:a = input().split()b = []for i in a:    if 65 <= ord(i) <= 90 or 97 <= ord(i) ……