Python列表推導(dǎo)式(List Comprehensions)是一種簡潔、高效的創(chuàng)建新列表的方法。它允許你使用一行代碼生成一個(gè)新的列表,而不需要使用循環(huán)或其他復(fù)雜的方法。列表推導(dǎo)式的主要用途是簡化代碼,使其更易于閱讀和理解。
列表推導(dǎo)式的基本語法如下:
[expression for item in iterable if condition]
其中:
expression
:用于計(jì)算新列表中每個(gè)元素的值。item
:表示從iterable
中取出的每個(gè)元素。iterable
:一個(gè)可迭代對象,如列表、元組、集合或字典的鍵。condition
:(可選)一個(gè)過濾條件,只有滿足條件的元素才會(huì)被包含在新列表中。以下是一些使用列表推導(dǎo)式的示例:
squares = [x**2 for x in range(10)]
print(squares) # 輸出:[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
words = ["apple", "banana", "cherry", "date", "fig", "grape"]
long_words = [word for word in words if len(word) > 3]
print(long_words) # 輸出:['banana', 'cherry', 'grape']
my_dict = {"a": 1, "b": 2, "c": 3, "d": 4}
keys_list = [key for key in my_dict]
print(keys_list) # 輸出:['a', 'b', 'c', 'd']
總之,列表推導(dǎo)式是一種非常有用的工具,可以幫助你更簡潔地創(chuàng)建和處理列表。