Cloud Rocket
Seçkin Üye
Hello guys
I created a code to generate passwords if you don't have creativity it can help you a lot.
Follow the code below:

I created a code to generate passwords if you don't have creativity it can help you a lot.
Follow the code below:
Python:
import random
print('Welcome To your Password Generator')
chars = 'abcdefghijklmnopqrstuvwxyzABCEFGHIJKLMNOPQRSTUVWXYZ!@$%&0123456789'
number = input('Amount of passwords to generate:')
number = int(number)
length = input('Input your password length: ')
length = int(length)
print('\nhere are your password:')
:catuwu:
for pwd in range(number):
passwords = ''
for c in range(length):
passwords += random.choice(chars)
print(passwords)