1. Learn
  2. /
  3. 课程
  4. /
  5. Python 中级

Connected

道练习

while:热身

while 循环就像反复执行的 if 语句。只要条件为 True,代码就会一遍又一遍地执行。请再看一下它的基本结构。

while condition :
    expression

您能判断下面这个 while 循环会打印几次吗?

x = 1
while x < 4 :
    print(x)
    x = x + 1

说明

50 XP

答案选项