0
user_answer = (raw_input('Can you guess the word that is missing? ')).lower()
count =0
while count <=1:
if user_answer == 'brown':
print ('Well done')
break
else:
user_answer =(raw_input('Please Guess again? '))
count+=1
else:
print ("Fail Game")
我正在一個簡單的遊戲,它允許用戶輸入錯誤的猜測三次。我一直在玩這個while循環和它的作品,(雖然計數< = 1),但我也有點困惑,爲什麼? (不是在抱怨),但任何人都可以解釋爲什麼它的作品,因爲我雖然最初的代碼應該像一個下面(但這些使用5次)雖然計數python
count = 0
while count <=3:
的代碼的所有其餘同上。
我沒有想到循環之外的第一個實例。現在有道理。 –