题解列表

筛选

Python统计数字字符个数

摘要:解题思路:注意事项:参考代码:n=input()count=0for i in n:    if i>=&#39;0&#39; and i<=&#39;9&#39;:        count+=1p……

Python解统计字符

摘要:解题思路:注意事项:参考代码:n = input()a = 0b = 0c = 0d = 0for i in n:    if (i>=&#39;a&#39; and i<=&#39;z&#39;) ……

2772: 苹果和虫子(Python)

摘要:解题思路:注意事项:参考代码:from decimal import * Pi=3.14159 tmp = input() n,x,y = tmp.split() n = int(n) x ……

1866: 三位数反转(Python)

摘要:解题思路:注意事项:参考代码:while True:     try:         n = input()         m = n[::-1]         

刷题统计Pthon

摘要:解题思路:注意事项:参考代码:a,b,n=map(int,input().split())week=5*a+2*bdays=(n//week)*7n%=weekif n<=a*5:    day=0 ……

计算球的体积(Python)

摘要:解题思路:注意事项:参考代码:import math pi = math.pi while True:         try:         r = float(input()) ……

题解 2811: 救援

摘要:解题思路:注意事项:参考代码:import math   # 调用数学模块 t = 0 n = int(input())    #屋顶数 for i in range(n):     a = ……

Python成绩排名

摘要:解题思路:注意事项:list.sort(key=lambda x:(x[0],-x[1])) # 先按第一个返回值排序,排序完成之后, 如果第一个返回值相等,然后再按照第二个返回值排序参考代码:n=i……

Python解决登陆验证问题

摘要:解题思路:注意事项:运用字典来解决参考代码:dict={&#39;dotcpp&#39;:&#39;123456&#39;}m=input()n=input()if m in dict and dic……