python循环遍历json_Python学习之循环遍历

1fb3c5aecf18a583606ba61ccd2acf33.png

遍历一个范围内的数字

for i in range(6):
    print (i ** 2)

0
1
4
9
16
25

遍历集合

colors = ['red', 'green', 'blue', 'yellow']
for color in colors:
    print (color)

red
green
blue
yellow

反向遍历集合

for color in reversed(colors):
    print (color)

yellow
blue
green
red

遍历集合及其下标

for i, color in enumerate(colors):
    print (i, '-->', color)

0 --> red
1 --> green
2 --> blue
3 --> yellow

遍历两个集合

names = ['raymond', 'rachel', 'mattthew']
colors = ['red', 'green', 'blue', 'yellow']
for name, color in zip(names, colors):
    print (name, '-->', color)

raymond --> red
rachel --> green
mattthew --> blue

有序遍历

colors = ['red', 'green', 'blue', 'yellow']
for color in sorted(colors):
    print (color)
for color in sorted(colors, reverse = True):
    print (color)

blue
green
red
yellow
yellow
red
green
blue

自定义排序顺序

colors = ['red', 'green', 'blue', 'yellow']
print (sorted(colors, key=len))

['red', 'blue', 'green', 'yellow']

列表解析和生成器

print (sum(i ** 2 for i in range(10)))

285

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值