【发布时间】:2021-11-23 02:30:07
【问题描述】:
我无法弄清楚如何将我的代码循环回特定点,我有 2 个循环点,第一个工作正常,但我无法让第二个工作,因为我必须定义整数变量“num_stores_int”,但如果我这样做,那么“while”循环将不起作用。请参阅我的代码以了解这些点的位置。
这是我的代码:
num_stores = ("")
num_stores_int = int(num_stores)
while num_stores.isnumeric() == False:
while num_stores_int > 10: #This is where I want it to loop to
num_stores = input ("\n To start, please enter the amount of stores you own: ")
if num_stores.isnumeric() == True:
num_stores_int = int(num_stores)
if num_stores_int > 10: #this is where I want the "while" loop to validate the integer being less than 10
print (" Sorry, this sales tracker can track a maximum of 10 stores.\n Here, try that again, I'll reboot it for you.\n")
print (" -----------------------REBOOTING------------------------")
if num_stores_int >= 5:
print ("\n Hmm, interesting, you'd think someone with that many \n stores would be able to afford a better sales tracker.")
print (" Well, I guess you're stuck with me! MUHAHAHAHA!!......\n\n Anyway,")
print (f" clearly big business person, you own {num_stores_int} stores.\n I'm gonna need you to tell me where each one is")
else:
num_stores_int = int(num_stores)
print (f" Alright... so, random business person, you have {num_stores_int} stores.\n Now, I'm going to need you to tell me where each one is")
else:
print ("\n Hey, uhh, you're going to have to write a number for the\n amount of stores you've got, letters and decimals don't \n really work. Here, try again, I'll reboot it for you.\n")
print (" -----------------------REBOOTING------------------------")
【问题讨论】:
-
将
if num_stores_int >= 5:更改为elif num_stores_int >= 5:
标签: python loops validation while-loop integer