{}
Buy 1 year, 🎁 Gift 1 year — completely FREE 
Split the cost with a friend. You both get 12 months for $99.
Buy 1 year, Gift 1 year —completely FREE
Start FREE Trial
Start FREE Trial
Buy 1 year, 🎁 Gift 1 year — completely FREE 
Split the cost with a friend. You both get 12 months for $99.
Buy 1 year, Gift 1 year —completely FREE
Start FREE Trial
Start FREE Trial
run-icon
main.py
import string import secrets password = string.ascii_lowercase + string.ascii_uppercase + string.digits + string.punctuation #This code works, but I didn't write it hence why I put in comments #word = ' '.join( secrets.choice(password) for s in range(12)) #print (word) print ("Your secure password is: ") for Pass in password and range(1): word = ' '.join(secrets.choice( password) for word in range( 8)) print (' ',word)
Output