Python 之 while循环语句
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 之 while循环语句相关的知识,希望对你有一定的参考价值。
1、最简单的while循环语句
count = 0
while True:
count = count +1
print(count)
2、加上条件判断循环
age = 23
count = 0
while count < 3:
age_guess = int(input("请输入数字:"))
if age_guess == age :
print("你猜对了啦")
break;
elif age_guess > age :
print("你猜大了")
else:
print("你猜小了")
count = count+1
print("游戏结束")
3、while循环另类用法(else)
age = 23
count = 0
while count < 3:
age_guess = int(input("请输入数字:"))
if age_guess == age :
print("你猜对了啦")
break;
elif age_guess > age :
print("你猜大了")
else:
print("你猜小了")
count = count+1
else: #当while判断不成立时,运行else语句
print("你输入的次数太多啦")
print("游戏结束")
以上是关于Python 之 while循环语句的主要内容,如果未能解决你的问题,请参考以下文章
Python入门教程第57篇 循环进阶之模拟do…while语句