Password generator - Python Code

Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Onaylı Üye
Katılım
10 Kas 2022
Mesajlar
109
Tepki puanı
5
Ödüller
2
Yaş
20
3 HİZMET YILI
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:

:özellik:
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)
use chat gpt ha
 
Banlı Üye
Katılım
29 Tem 2022
Mesajlar
234
Tepki puanı
13
Yaş
26
3 HİZMET YILI
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:

:özellik:
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)
Why don't use google random password?
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Üst