Skip to content

Instantly share code, notes, and snippets.

@martjanz
Created June 9, 2020 15:23
Show Gist options
  • Save martjanz/508e85a00519f4401e8c0e269ab77f7f to your computer and use it in GitHub Desktop.
Save martjanz/508e85a00519f4401e8c0e269ab77f7f to your computer and use it in GitHub Desktop.
Fiberpass
words_male = list('004' + f'{n:07}' for n in range(99999999))
words_female = list('014' + f'{n:07}' for n in range(99999999))
with open('words.txt', 'w') as fhandler:
for item in (words_male + words_female):
fhandler.write('%s\n' % item)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment