dak0tah

Untitled

Sep 14th, 2013
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.41 KB | None | 0 0
  1. x = raw_input("how you doing??")
  2. if x == "good":
  3.     print "very good"
  4.     y = raw_input("what you been up to?")
  5.     if type(y) == str:
  6.         print "interesting"
  7.     else:
  8.         print "i do not understand your syntaxes"
  9. elif x == "bad":
  10.     print "sorry to hear that, tell me more"
  11.     z = raw_input("tell your sob story")
  12.     if type(z) == str:
  13.         print "I'm so, so sorry"
  14.     else:
  15.         print "excuse you?"
  16. else:
  17.     print "nevermind, then"
Advertisement
Add Comment
Please, Sign In to add comment