在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 儿童毕业祝福语 简短6
14 开工仪式横幅祝福语简短
15 孩子日常祝福语大全简短
16 清晨寄语诗句祝福语简短
17 结婚送亲认亲祝福语简短
18 虎年喝酒拜年祝福语简短