Skip to content

Instantly share code, notes, and snippets.

@Ektaynot
Created February 28, 2019 15:05
Show Gist options
  • Save Ektaynot/844bf666f24dbdec761b74d57b6d0f75 to your computer and use it in GitHub Desktop.
Save Ektaynot/844bf666f24dbdec761b74d57b6d0f75 to your computer and use it in GitHub Desktop.
b = input("ad:")
h = input("Soyad:")
m = (b+h)
a = open("aynen.txt","r")
adana = a.read()
while True:
if adana == m:
print("Giriş Kabul Edildi")
else:
print("Hatalı Giriş")
f = input("Ad:")
s = input("SoyAd:")
b = (f+s)
a = open("aynen.txt","w")
a.write(b)
a.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment