Python列表推導式玩法

2022-10-11 00:27:13 字數 1961 閱讀 9516

列表做為python的基礎,是必須學習的語法之一。一些基礎的之前已經是反覆溫習和使用了,今天我們來學習它的高階版--》列表推導式。

列表推導式:

[i for i in iterable if expression]
首先使用常用的for迴圈實現

下面請出列表推導式

要生成的元組如下:

[(0, 1, 0, 0, 0, 0, 0),

(1, 1, 1, 1, 1, 1, 1),

(2, 1, 2, 4, 8, 16, 32),

(3, 1, 3, 9, 27, 81, 243),

(4, 1, 4, 16, 64, 256, 1024),

(5, 1, 5, 25, 125, 625, 3125),

(6, 1, 6, 36, 216, 1296, 7776),

(7, 1, 7, 49, 343, 2401, 16807),

(8, 1, 8, 64, 512, 4096, 32768),

(9, 1, 9, 81, 729, 6561, 59049),

(10, 1, 10, 100, 1000, 10000, 100000)]

s = [(i,1,i,i**2,i*i**2,i**4,i**2*i*i**2) for i in range(11)]

print(s)

countries = [[('finland', 'helsinki')], [('sweden', 'stockholm')], [('norway', 'oslo')]]

ls = [num for i in countries for num in i]

ll = [num for i in ls for num in i]

print(ll)

ll = 

countries = [[('finland', 'helsinki')], [('sweden', 'stockholm')], [('norway', 'oslo')]]

country = ['country','city']

ls = [num for i in countries for num in i]

for i in ls:

x = dict(zip(country, i))

print(ll)

python 理解列表推導式以及列表推導式巢狀

所謂列表推導式,就是將乙個可迭代的列表遍歷,將每次遍歷的元素拿出來進行一些操作,並用乙個 括起來,組成乙個新的列表 expression for i in item if condition expression 就是對每乙個元素的具體操作表示式 item是某個可迭代物件的元素,如列表,元組或字串等...

python列表推導式

a 1,2,3,4,5,6,7 將每個元素求平方 加入到b列表中 1.列表解析 b x 2 for x in a print b 2.用map實現 c map lambda x x 2,a print list c 3.用迴圈實現 d for x in a print d 將a中的偶數求立方加入到新...

Python 列表推導式

python中的列表推導式有較好的用途,這裡介紹兩個可能大家會用到的,具體簡單的列表推導式的這裡就不說了 testlist 1,2,3,4 defmul2 x return x 2 print mul2 i for i in testlist 還有一張可以通過在內部加上一些邏輯語句從而對資料進行篩選...