Password generator - Python Code

Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
“Even side characters have their battles to fight
Süper Üye
Katılım
29 Eyl 2021
Mesajlar
744
Çözümler
3
Tepki puanı
139
Ödüller
5
Yaş
33
4 HİZMET YILI
i dont know how to use this can you make a toutorial video
 
Ultra Üye
Katılım
12 Ocak 2021
Mesajlar
1,517
Çözümler
2
Tepki puanı
206
Ödüller
5
Yaş
27
5 HİZMET YILI
Thank you for this, will try it but I feel like its not that efficient as someone could do the same and get our password.
 
𝕄𝕒𝕤𝕥𝕖𝕣 𝕠𝕗 𝕎𝕒𝕥𝕔𝕙
Ultra Üye
Katılım
20 May 2020
Mesajlar
1,954
Tepki puanı
261
Ödüller
9
6 HİZMET YILI
thanks for the help brother
 
Onaylı Üye
Katılım
26 May 2018
Mesajlar
73
Tepki puanı
8
Ödüller
8
Yaş
22
8 HİZMET YILI
in my opinion you should create a very complex password
 
Onaylı Üye
Katılım
16 Eyl 2022
Mesajlar
58
Tepki puanı
5
Ödüller
1
Yaş
27
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)
thanks but how can make a password list generator like if i have a name and i wanna generate 1000 passwords of it once ?
 
Onaylı Üye
Katılım
24 Tem 2021
Mesajlar
82
Tepki puanı
14
Ödüller
3
Yaş
26
Sosyal
4 HİZMET YILI
thank you.... try already very good for someone who only put basic password haha
 
Moderatörün son düzenlenenleri:
Wryyyyyyyyyyyy
Onaylı Üye
Katılım
24 Şub 2022
Mesajlar
121
Tepki puanı
12
Ödüller
2
Yaş
26
4 HİZMET YILI
this is how my google suggest me make strong password
 
Onaylı Üye
Katılım
1 Ağu 2022
Mesajlar
50
Tepki puanı
2
Ödüller
2
Yaş
28
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)
Nice, but no need to make so much effort, you could make chars string using "string" library
 
Everybody is a genius
Onaylı Üye
Katılım
4 Tem 2022
Mesajlar
60
Tepki puanı
9
Ödüller
2
Yaş
34
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)
Thanks for giving us for free I will definitely use this
 
Onaylı Üye
Katılım
10 Şub 2019
Mesajlar
112
Çözümler
1
Tepki puanı
11
Ödüller
5
7 HİZMET YILI
thanks for the release, let me try and check how strong the pass is
 
Onaylı Üye
Katılım
29 Ocak 2022
Mesajlar
53
Tepki puanı
5
Ödüller
3
Yaş
35
4 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)
to create a random password
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Üst