在Python中带有示例的while关键字
Pythonwhile关键字
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
10while关键字的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
热门推荐
10 儿子立冬祝福语简短独特
11 对当兵的祝福语简短
12 侄儿高考试祝福语简短
13 伴郎红包祝福语朋友简短
14 媳妇生日简短祝福语朋友
15 公司年会祝福语简短最好
16 元旦感恩祝福语简短大全
17 红包祝福语简短10字
18 周六早晨祝福语简短