题解列表

筛选

妹子杀手的故事

摘要:while True:     l,h = map(int,input().split())     if l == 0 and h == 0:         break     print……

题解 1161: 回文数(二)(python)

摘要:def n_to_ten(n,m):     j = 0     sum =0     for i in str(m)[::-1]:         sum += int(i)*n**j  ……

[编程入门]自由下落的距离计算

摘要:解题思路:找规律 借助画图工具来进行找规律100 50 50 25 25 12 .5 12.5.........注意事项:注意要保留两位小数参考代码:m,n=map(int,input().split……

列表去重、排序

摘要: m = int(input()) m_lis = list(map(int, input().split())) #输入 m_lis1 = m_lis[:] #……

编写题解 1160: 出圈

摘要:while True:     try:         n,m =map(int,input().split())          lis = list(range(1,n+1))    ……