while True:
firstName = input("Please enter your First Name\n")
print ("Your First Name is", firstName.title())
correct1 = input("Is this correct?\n")
if correct1.lower() == "yes":
break
if correct1.lower() == "no":
continue
else:
print ("Please say yes or no")
這是我的一些代碼,基本上在「else」之後,我想返回一行代碼,說「correct1 = input(」這是否正確> \ n「)」但我不知道該怎麼做。任何幫助將不勝感激。如何返回一個循環中的某個點python
_i想回到code_線你的意思_i要返回**的** code_ –
的線這就是我的意思是,當我運行acutal代碼,並告訴我說是或不是,請不要回復「請輸入您的名字」,我希望它說「這是正確的嗎?」 – Tazzy3
在內部循環中執行'correct1'讀取:'correct1 =「」',然後:'while correct1.lower()not in [「yes」,「no」]:.... .... – CristiFati