Skip to content

Instantly share code, notes, and snippets.

@nuryslyrt
Created March 18, 2011 23:47
Show Gist options
  • Save nuryslyrt/877041 to your computer and use it in GitHub Desktop.
Save nuryslyrt/877041 to your computer and use it in GitHub Desktop.
#!/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