Created
June 9, 2020 15:23
-
-
Save martjanz/508e85a00519f4401e8c0e269ab77f7f to your computer and use it in GitHub Desktop.
Fiberpass
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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