6行代码解决求和训练 摘要:解题思路:注意事项:参考代码:a, b, c = map(int, input().split())A = sum(range(1, a+1)) # 计算1到a的自然数之和B = sum([i**2…… 题解列表 2024年12月08日 1 点赞 3 评论 732 浏览 评分:10.0
字典写了一遍 摘要:解题思路:试了试字典写法注意事项:有的慢,还可以优化,个人水平不足,供各位参考参考代码:d=[]d1={}n,m=map(int,input().split())for i in range(n): …… 题解列表 2024年12月08日 0 点赞 0 评论 390 浏览 评分:2.0
无聊的星期五 摘要:while True: x, y = list(map(int, input().split())) if x == 0 and y == 0: break print…… 题解列表 2024年12月06日 0 点赞 0 评论 614 浏览 评分:0.0
python重载练习之复数加减法 摘要:解题思路:注意事项:参考代码:class Complex: def __init__(self, real1, imag1, real2, imag2, op): self…… 题解列表 2024年12月06日 0 点赞 0 评论 382 浏览 评分:0.0
python重载练习之复数加减法 摘要:解题思路:注意事项:参考代码:class Complex: def __init__(self,real=0,imag=0): self.real=real self…… 题解列表 2024年12月06日 0 点赞 0 评论 266 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:class Date: def __init__(self): self.__year = 0 self.__mon…… 题解列表 2024年12月04日 0 点赞 0 评论 512 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:def Compare(a, b): if isinstance(a, int) and isinstance(b, int): return…… 题解列表 2024年12月04日 0 点赞 0 评论 338 浏览 评分:9.9
七行代码解决问题 摘要:解题思路:用字符串解决问题注意事项:无参考代码:a=input()print(len(a))for i in range(len(a)): print(a[i],end=" ")print()fo…… 题解列表 2024年12月03日 0 点赞 0 评论 1215 浏览 评分:4.8
不懂可评论 摘要:解题思路:注意事项:参考代码:class Time: def __init__(self): self.__h=0 #__表示私有,防止外部访问和修改 …… 题解列表 2024年12月03日 0 点赞 0 评论 399 浏览 评分:9.9
结构体之成绩统计2 摘要:解题思路:在初始化的时候有些复杂,暂时想不出更好的方法注意事项:参考代码:a=int(input())c1=0c2=0c3=0sz=0s1=0s2=0s3=0x=""for i in range(a)…… 题解列表 2024年12月01日 0 点赞 0 评论 480 浏览 评分:0.0