我正在尝试制作一个“游戏”,同时学习 Raspberry Pi 上的 Python 和 GPIO。这就是我的自动取款机:
while playing == 1:
if (GPIO.input(9) == 0):
GPIO.output(18, GPIO.LOW)
print("Well done!!")
time.sleep(1)
else:
print("Wrong!")
lives = lives - 1
time.sleep(1)
playing = 0
现在,我的问题是程序正在执行 if 语句并直接进入 else (如您所料),但是,我希望程序在 if 语句的第一部分等待一秒钟,然后转到别的。
提前致谢!