python学习

【11】流程控制while

2023-02-09  本文已影响0人  考拉十口

使用while循环对上章猜随机数的游戏做优化,可以重复猜数,直到达到最大次数。

import random
x = random.randint(0, 100)
count = 0
while count < 10:
    n = int(input("输入你猜测的数字:"))
    if x > n:
        print("猜的数小了")
    elif x < n:
        print("猜的数大了")
    else:
        print("猜对了,真棒!")
    count += 1

输出0~100之间所有的偶数

count = 0
while count <= 100:
    if count % 2 == 0:
        print(count)
    count += 1

break:终止循环
continue:终止当次循环

while 条件:
else: # 当循环正常结束时执行,当循环被break或exit就不执行

死循环

while True:
上一篇下一篇

猜你喜欢

热点阅读