Warning: Undefined array key "enable_lazyload_videos" in /var/www/murat.ws/public_html/wp-content/plugins/reco-functions/reco-functions.php on line 129
Python ile rasgele parola uretmek – Murat Uğur Eminoğlu
Warning: Undefined array key "custom_scripts" in /var/www/murat.ws/public_html/wp-content/plugins/reco-functions/custom-styles.php on line 48

Press enter to see results or esc to cancel.

Python ile rasgele parola uretmek

Merhaba,

Python ‘u daha yeni ogrenmeye basladim ve ufak programciklar olusturdukca buraya ekleyecegim. Sevgiyle.

import random

def rasgele (kac):
    alfabe = "abcdefghijklmnoprstuvyzwx"
    alfabe = (alfabe.upper() + alfabe.lower())
    sayi = "0123456789"
    karakter = "!@#$%^&*()_+\]'[/.,<>|}{?=-"
    liste = list(alfabe + sayi + karakter)
    rand = (random.sample(liste, kac))
    print(*rand, sep="") rasgele(20)

Warning: Undefined array key "custom_scripts_footer" in /var/www/murat.ws/public_html/wp-content/plugins/reco-functions/custom-styles.php on line 58