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