Last active
June 18, 2021 07:06
-
-
Save drola/120edbb9bc7300cb15c602b25ef67839 to your computer and use it in GitHub Desktop.
generate_password.py
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
#!/usr/bin/env python3 | |
import random | |
characters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%&*1234567890" | |
print(''.join([random.choice(characters) for i in range(0, 32)])) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment