python理解循环:for,while

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python理解循环:for,while相关的知识,希望对你有一定的参考价值。

先看下for结构:

#!/usr/bin/python
# -*- Coding:UTF-8 -*-

for i in range(1):
    print i

输出:

0

 

输入和输出:

#!/usr/bin/python
# -*- Coding:UTF-8 -*-

for i in range(1, 10):
    print i

#输出: 1 2 3 4 5 6 7 8 9

输入和输出:

#!/usr/bin/python
# -*- Coding:UTF-8 -*-

for i in range(1, 10, 2):
    print i,

#输出:1 3 5 7 9

总结:

range([start=0], stop, [step=1])函数的含义:

1,从start开始,到stop结束,步长是step;

2,如果range只有一个参数,那么从0开始到stop-1结束;

3,step默认步长是1,可以重新写入为2或者更多;

4,起点包含start,终点不包含stop,到stop-1截止(start <= i < stop)

以上是关于python理解循环:for,while的主要内容,如果未能解决你的问题,请参考以下文章

Python 图中的while循环改for循环,怎么改,直接回答代码,谢谢

Python3练习题系列(03)

PHP循环语句深度理解分析——while, for, foreach, do while

python-循环(while循环for循环)

一文了解Python中的循环(for while break continue 嵌套循环...)

python之while与for循环,break与continue