Traceback (most recent call last):
File "C:\Python\ZombieGameImages\ZombielandI_NLoo.py", line 27, in <module>
gm.over(True)
TypeError: 'bool' object is not callable
if gm.time<1: #function that causes error
gm.over(True)
当我尝试在程序中使用gm.time 我在学校学习Python,所以我还是Python的新手。
救命?
最佳答案
gm.over是bool类型,您可以像方法一样调用它...
像这样设置:
gm.over = True
关于python - ' bool '对象不可调用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27479042/