摘要:
在编程界,有一句话非常出名,叫“Talk is cheap, show me the code.”——空谈无益,秀代码。我们现在从print()函数开始,先试着自己写下一行代码吧! main.py import time,random # 需要的数据和变量放在开头player_list = ['【狂 阅读全文
摘要:
一、不同层级的调用 import countcount.add(2,3)print (count.add(2,3)) 在不同层级引用函数,不能直接引用,否则会报错: import countModuleNotFoundError: No module named 'count' 可采用软添加方式 c 阅读全文
摘要:
1、python3 执行print时会报错 >>> print "fdsf"SyntaxError: Missing parentheses in call to 'print'. Did you mean print("fdsf")?>>> SyntaxError: Missing parenth 阅读全文