Skip to content

Instantly share code, notes, and snippets.

View TurkCraf's full-sized avatar

Ümit TurkCraf

View GitHub Profile
@TurkCraf
TurkCraf / gist:a7df382a52aeb36dfcb2626963928583
Created March 24, 2017 16:02
Python3 Kullanıcı Giriş Örneği
#Kullanıcı Giriş Sistemi
kullaniciadi = "Ahmet"
sifre = "1234"
print ("Sisteme Giriş Yapmak İçin Bilgilerinizi Giriniz!")
kull = input("Kullancı Adı :")
sif = input("Şifre :")
if kull == kullaniciadi and sif == sifre: