python文字游戏循环3次_Python第一周_所写代码_练习_三次循环
写法一:age_of_kunpeng = 21for i in range(3):guess_age = int(input("guess:"))if guess_age == age_of_kunpeng:print("yes , you got it!")breakelif guess_age > age_of_kunpeng:print("mybe think smaller...")els...