You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
241 B
Python

# Imports
import random
# Key
key = ""
# Characters
characters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
# Generate Key
for i in range(32):
key += characters[ random.randint(0, 61) ]
# Display Key
print(key)