Created
September 13, 2019 22:17
-
-
Save jxu/6e391ffea88df146c9b69a65567ec561 to your computer and use it in GitHub Desktop.
simple password generator
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
import string, random | |
pool = string.ascii_letters + string.digits | |
print(''.join(random.choices(pool, k=16))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment