简单倒计时 Python
简单倒计时 Python
这个问题已经有了答案:
Python中的\"SyntaxError: Missing parentheses in call to \'print\'\"是什么意思?
我写了这段代码,我在\'Python for dummies\'这本书中找到了它
countdown = 10 while countdown: print countdown, countdown -= 1 print "Blastoff!"
它应该打印出 10 9 8 7 6 5 4 3 2 1 Blastoff!
但是当我运行程序时,我得到了一个错误\'缺少在调用print时的括号\'
在Youtube上我找到了一个类似的代码,它从0一直数到10000000。这个代码可以正常运行。
def count(x): while (x <= 10000000): print (x) x+=1 count(0) print ("I hate my job. I quit!")
为什么它们看起来如此不同?我需要什么基础知识来理解这个问题?这是不同的Python版本的问题吗?\'Python for dummies\'这本书是一本糟糕的书吗?
admin 更改状态以发布 2023年5月22日