Python 1.5 循环

循环

Python中的循环有两种:

一种是for...in 用于将list或tuple中的元素迭代出来。

name = ['Michael','Bob','Jack']

for i in name :

   print(i)

Python中提供一个range()函数,用来生成一个整数序列。再通过list()函数转换为list。

list(range(5))

[0,1,2,3,4]

tuple(range(5,10))

(5,6,7,8,9)

另外一种是while循环,只要条件满足就不断循环。条件不满足退出循环。

sum=0

i=10

while i>0:
  sum =sun+i

  i=i-1

print (sum)



你可能感兴趣的:(python,循环)