Example & Tutorial understanding programming in easy ways.

What is the syntax for List Comprehension in Python

Syntax:

list=[var for var in iteration]

Example:

l=[i for i in range(10)]

print(l)

Output:

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]


Read More →