pythonfor循环

Posted

tags:

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

>>> exp=‘welcom to python‘
>>> for i in exp:
print(i,end=‘ ‘)


w e l c o m t o p y t h o n
>>>


>>> weeks=[‘星期一‘,‘星期二‘,‘星期三‘,‘星期四‘,‘星期五‘,‘星期六‘,‘星期天‘]
>>> for day in weeks:
print(day,len(day))


星期一 3
星期二 3
星期三 3
星期四 3
星期五 3
星期六 3
星期天 3
>>>

 


>>> range(3)
range(0, 3)
>>> list(range(3))
[0, 1, 2]
>>> for i in range(3):
print(i)


0
1
2
>>>


>>> for i in range(3,6):
print(i)


3
4
5
>>>


>>> for i in range(2,9,2):
print(i)


2
4
6
8
>>> for i in range(2,8,2):
print(i)


2
4
6
>>>








































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

pythonfor循环

pythonfor循环break可以出现多次

在 Python FOR 循环中获取循环计数

在运行时更改 Python for 循环范围(上限)

Python for..else 循环总是触发 else

Python for循环遍历一列的所有行