L2.八.while语句
Posted psy0508
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了L2.八.while语句相关的知识,希望对你有一定的参考价值。
# while循环语句
# if True:
# print(‘hello‘)
# while True:
# print(‘hello‘)
"""
while <条件> 如果条件为True,那么会重复运行while语句块中的内容。
如果while循环的条件一直未True,死循环
"""
# while True:
# number = 20
# user_number = int(input(‘请输入一个数字‘))
# if user_number < number:
# print(‘猜小了‘)
# elif user_number > number:
# print(‘猜大了‘)
# else:
# print(‘猜对了‘)
# exit()
# while 后的条件变化着
num = 0
while num < 10:
print(num)
num += 1 #简写
print
以上是关于L2.八.while语句的主要内容,如果未能解决你的问题,请参考以下文章
Java入门八 循环结构——for循环while循环do-while循环