Skip to content

Instantly share code, notes, and snippets.

@TalhaAkkas
Created March 19, 2011 23:13
Show Gist options
  • Save TalhaAkkas/877893 to your computer and use it in GitHub Desktop.
Save TalhaAkkas/877893 to your computer and use it in GitHub Desktop.
Muhammet Talha Büyükakkaşlar
# -*- coding: cp1254 -*-
isim = raw_input("Lütfen isminizi giriniz :")
numara = raw_input("Hoşgeldin {0} lütfen numaranızı giriniz".format(isim))
if numara == "019":
print "Bu numara Ali adlı kullanıcıya ait"
elif numara == "043":
print "Bu numara Mehmet adlı kullanıcıya ait"
elif numara == "126":
print "Bu numara Ayşe adlı kullanıcıya ait"
else:
print "Yeni numaranızla mutlu bir hayat dilerim"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment