2021-09-23 22:51 发起提问
2021-09-23 22:04 回答问题
1. name = 'Eric,' 或者 2. print('Hello ' + name + ",woule you like to learn some Python today?")
2021-09-23 21:30 回答问题
fulldblink = [dbprefix + str(dblink[i]) for i in range(len(dblink))]
2021-09-11 21:26 回答问题
AttributeError: module 'pygame' has no attribute 'MOUSEMOTIONUP' 还是这样。
2021-09-11 21:03 回答问题
from XXX import YYY
2021-09-11 20:46 回答问题
还是不行。AttributeError: module 'pygame' has no attribute 'MOUSEMOTIONDIR'。
2021-09-11 17:24 回答问题
AttributeError: module 'pygame' has no attribute 'MOUSEMOTIONUP' 还是这样。
2021-08-07 15:43 回答问题
没有up,不然dir看一下
2021-08-07 15:18 回答问题
看一下《简明python教程》,非常经典的入门书籍。或者直接看入门手册http://www.pythontab.com/html/pythonshouce27/
2021-08-07 15:16 回答问题
Money = input("请输入带有符号的货币单位:") if Money[-3:] in ['RMB']: RMB= (eval(Money[0:-3]))/6.78 print(RMB) print("转换后的金额是{:.2f}USD".format(RMB)) elif Money[-3:] in ['USD']: USD = 6.78*eval(Money[0:-3]) print("转换后的金额是