python 循环:for()while()

Posted

tags:

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

格式:

    for 变量 in 列表:

    while 表达式:


一、for循环

#!/usr/bin/python

#for [0..5]
sum = 0;  #当我没有初始化sum时,会提示TypeError: unsupported operand type(s) for +: 'builtin_function_or_method' and 'int' 

for x in [0, 1, 2, 3, 4, 5]:
    sum = sum + x;
    print x, sum;
print sum;

技术分享图片


#for [0..5]
sum = 0;
for x in range(6):
    sum += x;
    print x, sum;
print sum;

技术分享图片

技术分享图片


#for list/tuple
list = ['a', 'b', 'c', 'you'];
for list in list:
     print list;

技术分享图片


二、while循环

#!/usr/bin/python

n = 9
while n > 0:
    print n;
    n -= 1;  #python不支持 ++/--操作

技术分享图片


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

Python里for和while的区别(74)

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

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

python 循环:for()while()

Python-while循环和for循环

自学Python入门 (for和while)循环嵌套及用法