python下list和dict的简洁如诗的批处理操作
程序员文章站
2022-03-02 17:32:37
...
1. 列表List
a=[1,2,3,4,5,6,7,8]
a[1:]
[2, 3, 4, 5, 6, 7, 8]
a[::-1]
[8, 7, 6, 5, 4, 3, 2, 1]
x=[x**2 for x in a]
[1, 4, 9, 16, 25, 36, 49, 64]
2. 字典Dict
d={'q':1,'w':2,'e':3}
{'e': 3, 'q': 1, 'w': 2}
dd ={k:(v+1) for k,v in d.items()}
{'e': 4, 'q': 2, 'w': 3}
3. lambda, map 和 filter 函数 的灵活应用
a=[1, 2, 3, 4, 5, 6, 7, 8]
b=list(map(str,a))
['1', '2', '3', '4', '5', '6', '7', '8']
c=list(map(lambda x : x+2 , a))
[3, 4, 5, 6, 7, 8, 9, 10]
c=list(map(lambda x : x+2 , filter(lambda x : x % 3 == 0,a)))
[5, 8]
下一篇: 概念性