2021-09-23 23:16 回答问题
s+s=['a', 'b', 'c', 'd', 'e', 'f', 'g', 'a', 'b', 'c', 'd', 'e', 'f', 'g'] temp = (s + s)[len(s) - offset:2 * len(s) - offset]#取出temp列表中第4到第11个元素 temp = (s + s)[4:11]=['e', 'f', 'g', 'a', 'b', 'c', 'd']
2021-09-23 23:08 回答问题
def ccd(a): num = 1 for i in range(1,a+1): num *= i return print(num)ccd(20)复制代码
2021-09-23 22:23 发起提问
2021-09-23 22:21 回答问题
資料庫管理用SQL比較好
2021-09-23 22:17 回答问题
你这个循环,每循环一次,就重新给l1、l2赋值了,即每次循环就开始后,l1、l2都指向一个空列表,so,你最后打印的列表只有最后一次循环存入的值。。。。正确的做法的,把l1 = [], l2 = []放在for循环的前面
2021-09-23 22:14 回答问题
樓主,以下為我的代碼,不知道是不是你要的,獻醜了# 型號,規格,版本model = ['A', 'B']specification = ['H']version = ['T', 'K']# 創建字典something = {}for m in model: for s in specification: for v in version: something[''.join([m, s, v])] = [0, 0]# 資料輸入data = [('AHT', 2,
2021-09-23 21:49 回答问题
了解的。 我想不明白的是为啥给print加了一个变量就不进行换行了。
2021-09-11 21:30 回答问题
AttributeError: module 'pygame' has no attribute 'MOUSEMOTIONUP' 还是这样。
2021-09-11 21:19 回答问题
谢谢你们
2021-09-11 21:12 发起提问