Python/ref keyword while

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python,而关键字

❮Python关键字

只要x小于9,就打印x:

    x = 0

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

定义和用法

The while 关键字用于创建一个 while 环。

while循环将继续直到语句为假。

相关页面

使用 for 关键字以创建for循环。

使用 break 关键字以打破循环。

了解更多关于while循环的信息 Python While循环教程

.

❮Python关键字