while 语句
通过 while 语句循环执行一段代码,直到条件不满足为止。
在线运行演示代码
参考教程
count = 0 while count < 10: count += 1 print(count)