2021-09-23 23:16 回答问题
我复制到我的pycharm上面运行,并未看见红字,代码没问题 运行顺利
2021-09-23 22:49 回答问题
非常感谢你的回复,但是g是一个generator,我这样写会提示:TypeError: can only join an iterable
2021-09-23 22:26 回答问题
显然是用正则表达式了。
2021-09-23 22:23 回答问题
如果直接取数字的最大值和最小值会怎么样呢? int(max(number_list)), int(min(number_list)) 然后再进去判断能否简单一些?
2021-09-11 21:26 回答问题
谢谢指导,已经弄好了!~十分感谢!!!
2021-09-11 21:16 回答问题
for num1 in range(len(list_001)): k1 = list_001[num1] k2 = list_001[num1+1] print(num1) print(k1) print(k2)
2021-09-11 20:46 回答问题
是dir(pygame),是查看类的属性
2021-08-07 19:21 发起提问
2021-08-07 15:18 回答问题
个人推荐 笨办法学 Python (第三版)
2021-08-07 15:17 回答问题
lis = ['a','b','c'] for i in lis: output = i + " = {}" exec(output)