Python for &while 循环
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python for &while 循环相关的知识,希望对你有一定的参考价值。
1 循环
1.1 For in循环
[[email protected] python]# cat for.py
#!/usr/bin/python
# -*- coding:utf-8 -*-
list=[1,2,3,4,5]
for i in list:
print(i)
list=(1,2,3,4,[3,4],(3,4))
for i in list:
print(i)
[[email protected] python]# python !$
python for.py
1
2
3
4
5
1
2
3
4
[3, 4]
(3, 4)
[[email protected] python]# cat sum100.py
#!/usr/bin/python
# -*- coding:utf-8 -*-
sum=0
l=list(range(101)) list(range(101))生成0-100的有序整数
for i in l:
sum=sum+i
print(sum)
l=tuple(range(101))
for i in l:
sum=sum+i
print(sum)
[[email protected] python]# python sum100.py
5050
10100
1.2 while循环
只要条件满足,就不断循环,条件不满足时退出循环。
[[email protected] python]# cat listpop.py
#!/usr/bin/python
# -*- coding:utf-8 -*-
l=[1,2,3,4]
num=0
while l:
l.pop()
num=num+1
print(num)
删除l中的元素,直到删尽
[[email protected] python]# python listpop.py
4 --4为l中的元素个数
本文出自 “90SirDB” 博客,请务必保留此出处http://90sirdb.blog.51cto.com/8713279/1795434
以上是关于Python for &while 循环的主要内容,如果未能解决你的问题,请参考以下文章
复习 if条件 for序列 for字典 循环退出 while