经常与continue,break,pass连用,continue 用于跳过该次循环,break 则是用于退出循环,具体用法如下:
无限循环
循环使用 else 语句
综合使用Whlie与for语句,代码如下...range()函数连用,代码如下:
>>>range用法
>>>range(10) # 从 0 开始到 10
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> range...(1, 11) # 从 1 开始到 11
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
>>> range(0, 30, 5) # 步长为 5
[0, 5, 10, 15,...>>输出结果为:打印无数次字符串"无限输出"
循环使用 else 语句
在 python 中,while … else 在循环条件为 false 时执行 else 语句块:
count = 0
while...than 5
1 is less than 5
2 is less than 5
3 is less than 5
4 is less than 5
5 is not less than 5
综合使用