Jump to content
×
×
  • Create New...

Lorem Ipsum is simply dummy text

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s

Test Test

Lorem Ipsum is simply dummy text

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s

Test Test

Lorem Ipsum is simply dummy text

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s

Test Test

Lorem Ipsum is simply dummy text

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s

Test Test

Lorem Ipsum is simply dummy text

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s

Test Test

  • Bu Alana Reklam Verebilirsiniz
    Bu Alana Reklam Verebilirsiniz

Rastgele Güçlü Pasaport Oluşturma Programı | Python

Rate this topic


serverIR
 Share


Recommended Posts

Rastgele Güçlü Pasaport Oluşturma Programı | Python
 Share


  • Members

Bu örnek, parola oluşturmakta zorlanıyorsanız ve birkaç düğmeyi tıklatarak otomatik bir parola oluşturucu istiyorsanız size yardımcı olacaktır.

Amaç, Python kullanarak, sistemleriniz için güçlü parolalar oluşturmanıza yardımcı olabilecek rastgele bir parola oluşturucu oluşturmaktır.

Bir dizi basit, yürütmesi kolay kodu takip ederek, Python’da alfabe ve özel karakterlerin bir kombinasyonunu kullanarak rastgele şifreler oluşturabilirsiniz.

Oluşturulan şifre(ler) kodlama aşamasında belirlediğiniz parametrelere göre olacaktır ve beğeninize göre alfabe, özel karakter ve sayı içerebilir/hariç tutabilir.

 

Python Kodları:

 

import random
Chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ123456789!@#$%^&*()"
 
password_len = int(input("Şifre kaç karakterden oluşturulsun : "))
password_count = int(input("Kaç adet şifre oluşturulsun : "))
for x in range(0, password_count):
        password = ""
        for x in range(0, password_len):
            password_char = random.choice(Chars)
            password      = password + password_char
        print("Random Şifreniz : " , password)

 

Ekran Çıktısı:

image-6.webp

----------------------------------------------------------------------------

Link to comment
Share on other sites


Konu Altı Reklam 1
Konu Altı Reklam 2
  • Replies 0
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Posted Images

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share


×
×
  • Create New...