Python While
While 循环
使用 while 循环,只要条件为真,我们就可以执行一组语句。
注意: 记住要递增 i,否则循环会无限循环。
while 循环需要相关的变量准备就绪,在这个例子中,我们需要定义一个索引变量,i,我们将其设置为 1。
使用 while 循环,只要条件为真,我们就可以执行一组语句。
注意: 记住要递增 i,否则循环会无限循环。
while 循环需要相关的变量准备就绪,在这个例子中,我们需要定义一个索引变量,i,我们将其设置为 1。
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]