1 #-*-coding:utf-8-*-2 3 #Guess number Game4 5Lucky_num = 66Count =07 8 whileCount < 3:9input_num = Int (Raw_input ("Please enter a number:"))Ten ifInput_num = =Lucky_num: One Print("Congratulations, that's correct! ") A Break - elifInput_num >Lucky_num: - Print("the number you entered is big.") the Else: - Print("the number you have entered is small ~") -Count + = 1 - Else: + Print("Ouch, input too many times ...")
1 #-*-coding:utf-8-*-2 3 #Guess number Game4 5Lucky_num = 66 7 forIinchRange (3):8input_num = Int (Raw_input ("Please enter a number:"))9 ifInput_num = =Lucky_num:Ten Print("Congratulations, that's correct! ") One Break A elifInput_num >Lucky_num: - Print("the number you entered is big.") - Else: the Print("the number you have entered is small ~") - Else: - Print("Ouch, input too many times ...")
"Python" implements a simple loop