溫馨提示×

Python列表推導(dǎo)式如何行

小樊
81
2024-10-31 07:35:50
欄目: 編程語言

Python列表推導(dǎo)式(List Comprehension)是一種簡潔、高效的創(chuàng)建列表的方法。它允許你使用一行代碼生成一個新的列表,而不需要使用循環(huán)或其他復(fù)雜的方法。列表推導(dǎo)式的語法如下:

[expression for item in iterable if condition]

其中:

  • expression:用于計算新列表中的每個元素的表達式,通常是對item的操作。
  • item:表示從iterable中取出的每個元素。
  • iterable:一個可迭代對象(如列表、元組、集合或字典的鍵)。
  • condition:(可選)一個過濾條件,只有滿足條件的item才會被包含在新列表中。

下面是一些使用列表推導(dǎo)式的示例:

  1. 生成一個0到9的平方的列表:
squares = [x**2 for x in range(10)]
print(squares)  # 輸出:[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
  1. 從一個字符串列表中提取所有長度大于3的字符串:
words = ["apple", "banana", "cherry", "date", "fig", "grape"]
long_words = [word for word in words if len(word) > 3]
print(long_words)  # 輸出:['banana', 'cherry', 'grape']
  1. 從一個字典中提取所有鍵的列表:
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)式可以使代碼更簡潔,但在某些情況下,過度使用可能會降低代碼的可讀性。在使用列表推導(dǎo)式時,請確保它仍然易于理解。

0