专业编程基础技术教程

网站首页 > 基础教程 正文

1 python的for循环格式及嵌套

ccvgpt 2024-11-23 11:56:44 基础教程 1 ℃

python的for循环是一个序列迭代器,可以遍历任何可迭代对象,比如字符串、列表、元组等。

1.1 python的for循环格式

python的for循环,会逐个将可迭代对象中的元素,赋值给for循环的变量。

1 python的for循环格式及嵌套

python的for循环格式如下,其中,break,continue,else都是可选部分:

for 变量 in 可迭代对象:
    循环语句
    if 分支条件1:
        break
    if 分支条件2:
        continue
else:
    未执行break,循环结束后执行

1.2 python简单的for循环

python简单的for循环,没有break、continue、else部分。

示例

>>> S='梯阅线条'
>>> for c in S:
    print(c,end=' ')

    
梯 阅 线 条 
>>> sum=0
>>> for x in range(1,100):
    sum+=x

    
>>> sum
4950

1.3 python的多变量for循环

python的for循环可以使用多个变量来遍历迭代对象。也可以用于序列解包。

示例

>>> T=[(1,2),(3,4),(5,6)]
>>> for (a,b) in T:
    print(a,b,end=',')

    
1 2,3 4,5 6,
# for 循环序列解包
>>> L=[tuple(range(i,i+4)) for i in range(1,13,4)]
>>> L
[(1, 2, 3, 4), (5, 6, 7, 8), (9, 10, 11, 12)]
>>> for (a,b,*c) in L:
    print(a,b,c)

    
1 2 [3, 4]
5 6 [7, 8]
9 10 [11, 12]

1.4 python的for循环遍历字典

python的for循环,遍历字典可以通过for k in D遍历键,或者通过for k,v in D.items()遍历键值对。

示例

# in D 遍历 key
>>> D={'name':'梯阅线条','no':9555,'url':'tyxt'}
>>> for k in D:
    print(k,'=',D[k])

    
name = 梯阅线条
no = 9555
url = tyxt
>>> list(D.items())
[('name', '梯阅线条'), ('no', 9555), ('url', 'tyxt')]
# D.items() 遍历 key和value
>>> for k,v in D.items():
    print(k,'=',v)

    
name = 梯阅线条
no = 9555
url = tyxt

1.5 python的嵌套for循环

1.5.1 break和else

在列表中查找是否存在指定的多个元素,可以用到break和else,以及嵌套for循环。

示例

>>> L1=['梯阅线条',9555,'tyxt','软件测试开发']
>>> L1=['梯阅线条',(9555,9556),'tyxt','软件测试开发']
>>> L2=['hi',(9555,9556)]
>>> for x in L2:
    for y in L1:
        if x == y:
            print('{}在{}里面'.format(x,L1))
            break
    else:
        print('{}不在{}里面'.format(x,L1))

        
hi不在['梯阅线条', (9555, 9556), 'tyxt', '软件测试开发']里面
(9555, 9556)在['梯阅线条', (9555, 9556), 'tyxt', '软件测试开发']里面

用成员关系in替换嵌套和break及else

示例

>>> L1
['梯阅线条', (9555, 9556), 'tyxt', '软件测试开发']
>>> L2
['hi', (9555, 9556)]
>>> for x in L2:
    if x in L1:
        print('{}在{}里面'.format(x,L1))
    else:
        print('{}不在{}里面'.format(x,L1))

        
hi不在['梯阅线条', (9555, 9556), 'tyxt', '软件测试开发']里面
(9555, 9556)在['梯阅线条', (9555, 9556), 'tyxt', '软件测试开发']里面

1.6 python的for循环查找相同字符

python的for循环结合成员关系in,可以查找两个序列中相同元素,比如查找两个字符串中相同的字符。

示例

>>> S1='梯阅线条'
>>> S2='提月线条'
>>> L=[]
>>> for x in S1:
    if x in S2:
        L.append(x)

        
>>> L
['线', '条']

版权声明?

本文首发微信公众号:梯阅线条

原创不易,转载请注明出处。

更多内容参考python知识分享或软件测试开发目录。

最近发表
标签列表