I am a beginner Python developer focused on backend development. I enjoy building simple applications and learning new technologies. My goal is to become a strong developer and work on real-world projects.
import secrets
letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*()-=+/'
print("Welcome to password generator")
try:
length = int(input("How many characters: "))
except:
print("Enter a number")
exit()
password = ''.join(secrets.choice(letters) for _ in range(length))
print(f'Your password is: {password}')