# Pastebin WZW5pknJ #!/usr/bin/env python3 import string count = 0 while count <= 2700/3: for a in string.ascii_uppercase: for b in string.ascii_lowercase: for c in string.digits: print(a+b+c,end=''); count += 1 print('\n') print(count)