在Python中带有示例的while关键字

Python while 关键字

while是python中的一个关键字(区分大小写),用于创建while循环。

while关键字的语法

    while condition:	    statement(s)

示例

    cnt = 1 # 计数器
    # 循环
    while cnt<=10:        print(cnt)
        cnt += 1

    Output:
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10

while关键字的Python示例

示例1:打印从1到n的数字。

# python代码演示一个例子 
# while关键字 

# 打印从1到n的数字
n = 10

cnt = 1 # 计数器
# 循环
while cnt<=n:    print(cnt)
    cnt += 1

输出结果

1
2
3
4
5
6
7
8
9
10

示例2:迭代列表并打印其元素

# python代码演示一个例子 
# while关键字 

# 迭代列表并打印其元素 

# 列表
cities = ["New Delhi", "Mumbai", "Chennai", "Banglore"]

index = 0 # 索引/计数器

# 循环 to iterate the list
while index<(len(cities)):
    print(cities[index])
    index += 1

输出结果

New Delhi
Mumbai
Chennai
Banglore