h0rnet

Untitled

Sep 1st, 2013
632
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. #!/usr/local/bin/python
  2.  
  3. name = raw_input("What is your name?")
  4. gay = raw_input("Are you gay?")  # If yes, leave blank. If no, input not
  5. color = raw_input("What is your favorite color?")
  6.  
  7. print "Ah, so your name is %s, you are %s gay, " \
  8. "and your favorite color is %s." % (name, gay, color)
Advertisement
Add Comment
Please, Sign In to add comment