Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ProfessorKazarinoff/1271e56f1ed3243a1f4d397d61d23dcc to your computer and use it in GitHub Desktop.
Save ProfessorKazarinoff/1271e56f1ed3243a1f4d397d61d23dcc to your computer and use it in GitHub Desktop.
Create a random password or url ending with Python
print(''.join(random.choice(''.join([string.ascii_letters,'_',string.digits])) for i in range(30)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment