Python list comprehension use case - generate 100 random lower case characters

from random import randint, choice
from string import ascii_lowercase
l = [choice(ascii_lowercase) for num in range(100)]
print(l)