解释很清晰的复杂思路(Python) 摘要:解题思路:(1)输入ISBN号码字符串string(2)根据数字Ascll码的范围分批将9位数字和1位识别码按列表和字符串存储(3)对存储9位数字的列表元素整数化处理,按照规则对元素计算加权和(4)对…… 题解列表 2024年11月29日 0 点赞 0 评论 25 浏览 评分:9.0
调用函数及封装性解题 摘要:解题思路:deff(a):  b=(a%10)*5  a=a//10  if(a-b)%17…… 题解列表 2024年11月27日 0 点赞 0 评论 29 浏览 评分:9.9
运用封装的方法和调用函数借以解答汽水瓶问题 摘要:解题思路:deff(water):  num=0  whileTrue:  &nbs…… 题解列表 2024年11月26日 0 点赞 0 评论 32 浏览 评分:9.9
遍历每条对角线 摘要:##遍历每条对角线m,n=map(int,input().split())#m行n列ans=0arr=[]for_inrange(m):arr.append([int(i)foriininput().…… 题解列表 2024年11月26日 0 点赞 0 评论 54 浏览 评分:9.9
编写题解 3029: 逆波兰表达式 摘要:inver = input().split()inver = inver[::-1]def arithmeti…… 题解列表 2024年11月25日 0 点赞 0 评论 16 浏览 评分:0.0
编写题解 2330: 信息学奥赛一本通T1178-成绩排序(Python) 摘要:解题思路:利用sorted()函数进行排序注意事项:首先按成绩排序,如果成绩相同则按名字升序参考代码:n=int(input())sc_dict={}foriinrange(n): …… 题解列表 2024年11月23日 0 点赞 0 评论 14 浏览 评分:9.9
不懂可评论 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().split())deter=b*b-4*a*cx1=(-b+deter**0.5)/2*ax2=(-b-deter**0.5)…… 题解列表 2024年11月23日 0 点赞 0 评论 11 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:year=int(input())if((year%4==0)and(year%100!=0)or(year%400==0)):  &…… 题解列表 2024年11月23日 0 点赞 0 评论 9 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:x=int(input())for pen4 in range(x//4,-1,-1):#优先买4元的笔,开始循环递…… 题解列表 2024年11月21日 0 点赞 0 评论 14 浏览 评分:9.9
不懂可评论 摘要:解题思路:注意事项:参考代码:days= ['Monday', 'Tuesday',&nbs…… 题解列表 2024年11月20日 0 点赞 0 评论 12 浏览 评分:0.0