List comprehension is powerful and must know concept in Python. If you understand List comprehension, it will help you to start writing shorter and effective code....
In fact, List Comprehensions are 35% faster than FOR loop and 45% faster than map function. So using List Comprehensions in your code improves performance...
List comprehensions allow us to create lists with a for loop with less code.