鹿妍晗
鹿妍晗

性别: 注册于 2021-02-27

向TA求助
0金币数
170 经验值
0个粉丝
主页被访问 274 次

9 个回答

0 赞同

怎么加逗号啊

1. name = 'Eric,' 或者 2. print('Hello ' + name +  ",woule you like to learn some Python today?")

回答于 2021-09-23 22:04

0 赞同

请问一个将字符串和数字合并的问题。

fulldblink = [dbprefix + str(dblink[i]) for i in range(len(dblink))]

回答于 2021-09-23 21:30

0 赞同

pygame问题

AttributeError: module 'pygame' has no attribute 'MOUSEMOTIONUP' 还是这样。

回答于 2021-09-11 21:26

0 赞同

新手求助!!

from XXX import YYY

回答于 2021-09-11 21:03

0 赞同

pygame问题

还是不行。AttributeError: module 'pygame' has no attribute 'MOUSEMOTIONDIR'。

回答于 2021-09-11 20:46

0 赞同

pygame问题

AttributeError: module 'pygame' has no attribute 'MOUSEMOTIONUP' 还是这样。

回答于 2021-09-11 17:24

0 赞同

pygame问题

没有up,不然dir看一下

回答于 2021-08-07 15:43

0 赞同

求python的中文教程,适合零基础的。

看一下《简明python教程》,非常经典的入门书籍。或者直接看入门手册http://www.pythontab.com/html/pythonshouce27/

回答于 2021-08-07 15:18

0 赞同

求大神帮我检查一下问题出在哪里

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("转换后的金额是{:.2f}RMB".format(...

回答于 2021-08-07 15:16