This line of code is an example of what?

choice = [item for item in clothes if item.startswith('g')]
(1 point)
object-oriented programming
list comprehension
a lambda function
a map-reduce function

The given line of code is an example of list comprehension.