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&lt; 1时,会出现上述错误。 我在学校学习Python,所以我还是Python的新手。 帮助
答案 0 :(得分:1)
gm.over是bool类型,你称它为方法... 像这样设置:
gm.over = True