1#! /usr/bin/env python3 2 3import random 4import string 5 6for i in range(1000000): 7 x = '' 8 letter = random.choice(string.ascii_lowercase + '\n') 9 if letter == '\n': 10 x += letter 11 else: 12 for i in range(int(random.random() * 20) + 1): 13 x += letter 14 print(x, end='') 15 16 17