Skip to content

Instantly share code, notes, and snippets.

@symtkn
Created March 18, 2011 19:35
Show Gist options
  • Save symtkn/876696 to your computer and use it in GitHub Desktop.
Save symtkn/876696 to your computer and use it in GitHub Desktop.
numara sorgulama
# -*- coding: utf-8-*-
#!/usr/bin/python
while True :
isim = raw_input("isminizi giriniz:")
print "Merhaba %s numaranı gir."%(isim)
n = raw_input("numaranızı giriniz:")
if n=='019' :
print "Bu numara Ali adlı kullanıcıya aittir."
elif n=='043' :
print "Bu numara Mehmet adlı kullanıcıya aittir."
elif n=='126' :
print "Bu numara Ayşe adlı kulnıcıya aittir."
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment