所以在我的程序中有一部分我要求用户输入一个数字。我使用 try/exept 作为:
limits=True
while limits:
try:
limits=int(input("Put your limit:"))
return limits
except(ValueError):
print("Thats not a number!")
我的问题是,如果用户确实输入了一个数字,我如何才能继续使用limits
包含用户稍后在我的代码中输入的变量?
之后,try/except 部分运行,当用户输入一个数字时,它就停止了,不再继续代码。