Created
March 18, 2011 23:47
-
-
Save nuryslyrt/877041 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
#-*- coding: utf-8 -*- | |
isim = raw_input("lutfen isminizi giriniz:") | |
if isim == "ali": | |
numara = raw_input("hosgeldin numaranı gir:") | |
if numara == '019': | |
print 'hosgeldin' | |
elif numara <> '019': | |
print "Bu numara Ali'ye ait degil.cik sistemden." | |
elif isim == "mehmet": | |
numara = raw_input("hosgeldin numaranı gir:") | |
if numara == '043': | |
print 'hosgeldin' | |
elif numara <> '043': | |
print "Bu numara Mehmet'e ait degil.cik sistemden." | |
elif isim == "ayse": | |
numara = raw_input("hosgeldin numaranı gir:") | |
if numara == '126': | |
print 'hosgeldin' | |
elif numara <> '126': | |
print "Bu numara Ayse'ye ait degil.cik sistemden." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment