Google News
logo
Python - Interview Questions
What is the syntax for List comprehension in Python?
The signature for the list comprehension is as follows :
[ expression(var) for var in iterable ]

For example, the below code will return all the numbers from 10 to 20 and store them in a list.
>>> alist = [var for var in range(10, 20)]
>>> print(alist)
Advertisement