一:学习内容
- while语句
- while-else语句
- while语句练习
二:while语句
1. 格式
while 表达式:
语句
2.逻辑
当程序执行到while语句时,首先计算表达式的值,如果表达式的值为假,那么结束整个while语句;
如果表达式的值为真,则执行语句,执行完语句再去计算表达式的值,依次循环
三:while-else语句
1. 格式
while 表达式:
语句1
else:
语句2
2.逻辑
在表达式为false时执行else中的语句2
四:while语句练习
1. 打印1到5
num = 1
while num <= 5:
print(num)
num += 1
2. 计算1+2+3+...+100
num = 1
sum = 0
while num <= 100:
sum += num
num += 1
print("sum = %d" % sum)
3.循环打印字符串中每个字符
str = "test is a very good"
index = 0
while index < len(str):
print("str[%d] = %s" % (index, str[index]))
index += 1
4.while-else语句练习
a = 1
while a <= 3:
print("learn python")
a += 1
else:
print("走进else语句")