Python:循环

Posted luckerzhang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python:循环相关的知识,希望对你有一定的参考价值。

old_boy_age=56
count=0
while count<3:
guess_old_boy_age = int(input("guess_old_boy_age"))
if guess_old_boy_age==old_boy_age:
print("yes,you got it")
break
elif guess_old_boy_age>old_boy_age:
print("no,you guess bigger")
else:
print("no,you guess smaller")
count+=1
else:
print("you have too many times...fuck off")













以上是关于Python:循环的主要内容,如果未能解决你的问题,请参考以下文章

python013 Python3 循环语句

python(10):while循环

python的for如何获得当前循环次数

Python--循环语句

Lesson 021 —— python 循环语句

Python 循环语句