python3 while语句

in python3 •  7 years ago 

循环语句:
作用:根据一定的条件,重复的执行一个或多个语句。
两种循环语句:
while语句:
语法:
while 真值表达式:
语句1
。。。
else:
语句2
。。。
语法说明: else子句可以省略
执行顺序:
1.先判断真值表达式是否为True
2.如果第一步为True,则执行语句1后跳到第一步,否则跳到第三步
3.执行else
4.结束while语句的执行
示例:

i = 1
while i <=10:
print(i)
i += 1
else:
print("我是else")

for语句:

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!