题解列表

筛选

简单python走起

摘要:解题思路:注意事项:参考代码:def  cc(n):     a=list(str(n))     b=list(str(n))     a.sort(reverse=True)     b.……

简单python走起

摘要:解题思路:注意事项:参考代码:for i in range(100,335):      l=[]      a=i      b=2*i      c=3*i      l.extend(……

Python代码,大道至简

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

发工资咯!(python代码,思路清晰)

摘要:解题思路:注意事项:    数据需要横向输入参考代码:b = 0money = 0sum1 = 0sum2 = 0while True:             # 输入数据,必须要横向输入    a……

IP判断的一种解题Python

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