Python列表推导式(List Comprehensions)是一种简洁、高效的创建列表的方法。它允许你使用一行代码生成一个新的列表,而不需要使用循环或其他复杂的方法。列表推导式的基本语法如下:
[expression for item in iterable if condition]
expression
:用于计算新列表中的每个元素的表达式。item
:表示从iterable
中取出的每个元素。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', 'Orange', 'Grape', 'Avocado']
uppercase_words = [word for word in words if word[0].isupper()]
print(uppercase_words) # 输出:['Apple', 'Orange', 'Grape', 'Avocado']
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']
list1 = [1, 2, 3, 4]
list2 = [5, 6, 7, 8]
sum_list = [x + y for x in list1 for y in list2]
print(sum_list) # 输出:[6, 7, 8, 9, 8, 9, 10, 11, 10, 11, 12, 13, 14]
注意:虽然列表推导式在某些情况下非常有用,但过度使用可能会导致代码难以阅读和理解。在使用列表推导式时,请确保它确实使代码更简洁且易于维护。