Python列表推導式(List Comprehension)是一種簡潔、高效的創建列表的方法。它允許你使用一行代碼生成一個新的列表,而不需要使用循環或其他復雜的方法。列表推導式的基本語法如下:
[expression for item in iterable if condition]
其中,expression
是對 item
的操作,iterable
是一個可迭代對象(如列表、元組、集合等),condition
是一個可選的條件表達式。
以下是一些使用列表推導式的示例,以簡化邏輯:
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']
list1 = [1, 2, 3]
list2 = ['a', 'b', 'c']
combined = [(x, y) for x in list1 for y in list2]
print(combined) # 輸出:[(1, 'a'), (1, 'b'), (1, 'c'), (2, 'a'), (2, 'b'), (2, 'c'), (3, 'a'), (3, 'b'), (3, 'c')]
通過使用列表推導式,你可以更簡潔地表達你的意圖,同時提高代碼的可讀性。