What happens if you use list comprehension without assigning it to a variable?
It raises a syntax error.
It creates a list but doesn't store it.
It modifies the original list in-place.
It returns a generator object.
This question is part of this quiz :
Python List Comprehension Quiz,Python Collections and comprehensions