count = 0 while True: print("count:",count) count = count+1 if count == 1000: break
#改爲for循環,控制三次
#換成for語句:()裏面 定義循環的次數
age_of_oldboy = 56 for i in range(3): guess_age = int(input("guess age:") ) if guess_age == age_of_oldboy : print("yes, you got it. ") break elif guess_age > age_of_oldboy: print("think smaller...") else: print("think bigger!") # if count == 3: # countine_confirm = input("do you want to keep guessing..?") # if countine_confirm != 'n': # count =0 else: print("you have tried too many times..fuck off")
#換成while循環。
age_of_oldboy = 56 count = 0 while count <3: guess_age = int(input("guess age:") ) if guess_age == age_of_oldboy : print("yes, you got it. ") break elif guess_age > age_of_oldboy: print("think smaller...") else: print("think bigger!") count +=1
#若是三次都錯了的話,就詢問是否繼續,若是輸入n就退出。 if count == 3: countine_confirm = input("do you want to keep guessing..?") if countine_confirm != 'n': count =0 #else: # print("you have tried too many times..fuck off")
#continue跳出本次循環,繼續下一次循環 # for i in range(0,10): # if i <3: # print("loop ",i) # else : # continue # print("hehe...")