2021-09-23 23:09 回答问题
估计想用递归,但没写好。
2021-09-23 23:05 回答问题
为什么a这个元组不需要用()?
2021-09-11 21:30 回答问题
1. name = 'Eric,' 或者 2. print('Hello ' + name + ",woule you like to learn some Python today?")
2021-09-11 21:16 发起提问
2021-09-11 21:03 发起提问
2021-08-07 15:49 回答问题
我也是小白一只。不过写了一个你可以试试看。 str1 = raw_input("input first String") str2 = raw_input("input second String") restr1 = str1.upper() restr2 = str2.upper() little_len = 0 startindex = 0 endindex = 0 flag = False targestr = "" compstr = "" res = [] def compar1_2(sta,
2021-08-07 15:43 回答问题
还是不行。AttributeError: module 'pygame' has no attribute 'MOUSEMOTIONDIR'。
2021-08-07 15:17 回答问题
有没有大佬说一下,这些字典创建了之后有哪些地方用到了,我知道这个的用途,主要就是不知道哪些神奇的案例
2021-08-07 15:16 回答问题
你的字符切片不对,改成这样就可以了。 Money = input("请输入带有符号的货币单位:") if Money[:3] == 'RMB': RMB= (eval(Money[3:]))/6.78 print("转换后的金额是{:.2f}RMB".format(RMB)) elif Money[:3] == 'USD': USD = 6.78*eval(Money[3:]) print("转换后的金额是{:.2f}USD".format(USD)) else:
2021-07-21 16:48 发起提问