在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
热门推荐
7 简短的二胎祝福语
10 简短霸气女儿生日 祝福语
11 祝福语高考小众诗句简短
12 元旦祝福语20秒简短
13 老师过年祝福语大全 简短
14 一生祝福语简短
15 产检祝福语简短霸气
16 朋友店开张祝福语简短
17 生日爱情祝福语大全简短
18 朋友女儿生日祝福语 简短