So this is the code I have. The outcome is something along "['jjjjjjj', 'tt', 'dddd', 'eeeeeeeee']". How can I change the list comprehension to allow for the function random.choice to repeat for each letter of each 'word'?
lista=[random.randint(1,10)*random.choice(string.ascii_letters) for i in range(random.randint(1,10))]