Skip to content

Instantly share code, notes, and snippets.

@pejobo
Created August 6, 2023 13:19
Show Gist options
  • Select an option

  • Save pejobo/ce61d6248cbcc55e817606a371b13d17 to your computer and use it in GitHub Desktop.

Select an option

Save pejobo/ce61d6248cbcc55e817606a371b13d17 to your computer and use it in GitHub Desktop.
Random Password Generator
import random
import string
alphabet = string.ascii_lowercase + string.digits + string.ascii_uppercase + '%$&?@§/.-+~*#()='
print(''.join(random.choice(alphabet) for i in range(32)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment