编写题解 1162: 密码(python) 摘要:fh = ['~','!','@','#','$','%','^'] num = [s…… 题解列表 2021年12月25日 0 点赞 0 评论 642 浏览 评分:0.0
题解 1390: 大神老白(python) 摘要:while True: try: num=list(map(int,input().strip().split())) ls = num[1:] lt = [abs(i) for…… 题解列表 2021年12月24日 1 点赞 0 评论 574 浏览 评分:0.0
题解 1389: 程序员的表白(python代码) 摘要:while True: try: num = int(input()) for i in range(num):   题解列表 2021年12月24日 1 点赞 0 评论 1025 浏览 评分:10.0
1388: GC的苦恼 摘要:解题思路:注意事项:参考代码:while True: try: num = int(input()) if 90<=num<=100: prin…… 题解列表 2021年12月24日 0 点赞 1 评论 414 浏览 评分:0.0
陈教主的三角形 摘要:while True: try: ls = list(map(int,input().split())) ls.sort() a, 题解列表 2021年12月24日 0 点赞 0 评论 459 浏览 评分:0.0
妹子杀手的故事 摘要:while True: l,h = map(int,input().split()) if l == 0 and h == 0: break print…… 题解列表 2021年12月24日 0 点赞 0 评论 599 浏览 评分:0.0
题解 1161: 回文数(二)(python) 摘要:def n_to_ten(n,m): j = 0 sum =0 for i in str(m)[::-1]: sum += int(i)*n**j …… 题解列表 2021年12月24日 0 点赞 0 评论 920 浏览 评分:0.0
str = replace(old, new)替换所有空格 摘要:就这???? 就这??? while 1: st = input() NewSt = st.replace(' ', '') print…… 题解列表 2021年12月24日 0 点赞 0 评论 530 浏览 评分:0.0
divmod(x, y)函数,集商和余数于一体 摘要: # a, b = divmod(x, y) divmod()函数会返回两个值,第一个为 x // y, 第二个返回值为 x % y MoneyVariety_lis =…… 题解列表 2021年12月24日 0 点赞 0 评论 979 浏览 评分:0.0
[编程入门]自由下落的距离计算 摘要:解题思路:找规律 借助画图工具来进行找规律100 50 50 25 25 12 .5 12.5.........注意事项:注意要保留两位小数参考代码:m,n=map(int,input().split…… 题解列表 2021年12月23日 0 点赞 0 评论 817 浏览 评分:9.9