- while 循环
- for 循环
- break #break是结束整个循环。
- continue #continue 结束本次循环。
while 循环
i = 0 while i < 10: i += 1 print(i) 结果: [Running] /usr/bin/python3 "/home/zhi/桌面/python/dome.py" 1 2 3 4 5 6 7 8 9 10 [Done] exited with code=0 in 0.051 seconds
while也是可以直接输入True和False,如果False则跳过运行while,如果直接填写True,那么while就进入死循环,所以为了避免死循环我则加上 i 条件作为结束循环条件。
for 循环
for i in range(5,10): print(i) 结果: [Running] /usr/bin/python3 "/home/zhi/桌面/python/dome.py" 5 6 7 8 9 [Done] exited with code=0 in 0.039 seconds
以上是for循环,for循环不能直接写False和True,因为for是直接便利,元祖,列表,字典,集合。不能够执行其他数据。