Advertisement
Guest User

Untitled

a guest
Mar 7th, 2014
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.42 KB | None | 0 0
  1. #!/usr/bin/python
  2. whois = raw_input("who : ")
  3. if whois == "cr" or whois =="CR":
  4.     print "We are busy"
  5. elif whois == "sc" or whois =="SC":
  6.     print "Please wait while Director been available"
  7. elif whois == "sm" or whois =="SM":
  8.     print "You are welcome...Director waiting you"
  9. elif whois == "r" or whois =="R":
  10.     print "We will send your money tomorrow"
  11. else:
  12.     print "He/she is "+whois+" ,what I've to do?"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement