题解列表
编写题解 1162: 密码(python)
摘要:fh = ['~','!','@','#','$','%','^']
num = [s……
题解 1390: 大神老白(python)
摘要:while True:
try:
num=list(map(int,input().strip().split()))
ls = num[1:]
lt = [abs(i) for……
题解 1389: 程序员的表白(python代码)
摘要:while True:
try:
num = int(input())
for i in range(num):
 
1388: GC的苦恼
摘要:解题思路:注意事项:参考代码:while True: try: num = int(input()) if 90<=num<=100: prin……
题解 1161: 回文数(二)(python)
摘要:def n_to_ten(n,m):
j = 0
sum =0
for i in str(m)[::-1]:
sum += int(i)*n**j
……
str = replace(old, new)替换所有空格
摘要:就这????
就这???
while 1:
st = input()
NewSt = st.replace(' ', '')
print……
divmod(x, y)函数,集商和余数于一体
摘要: # a, b = divmod(x, y) divmod()函数会返回两个值,第一个为 x // y, 第二个返回值为 x % y
MoneyVariety_lis =……