我正在用python制作游戏,并且我设置了一些代码:
istouching = False
death = True
def checkdead():
if istouching:
print "Is touching"
death = True
while death is False:
print death
game logic
我知道游戏逻辑是有效的,因为“正在触摸”打印,但是当我打印出死亡的价值时,它仍然是假的,有什么帮助吗?