**已关闭。**此问题为not reproducible or was caused by typos。目前不接受答复。
此问题是由打印错误或无法再重现的问题引起的。虽然类似的问题在这里可能是on-topic,但这个问题的解决方式不太可能帮助未来的读者。
1小时前关闭
Improve this question
我想用Python做一个60秒的游戏,当我在if语句中做减法时,它就不起作用了
Seconds = 60
Weapon = input("Would you like to take the axe(-5 seconds) or the shotgun(-10 seconds) (can take both if ya want) ")
if Weapon.lower().startswith("s"):
Seconds - 10
print("now you have a shotgun")
print(Seconds)
我当然有更多的代码,但这只是不工作,我希望有一个修复它
1条答案
按热度按时间0h4hbjxa1#
您忘记了 * 秒 * 分配中的等号。