Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/local/bin/python
- name = raw_input("What is your name?")
- gay = raw_input("Are you gay?") # If yes, leave blank. If no, input not
- color = raw_input("What is your favorite color?")
- print "Ah, so your name is %s, you are %s gay, " \
- "and your favorite color is %s." % (name, gay, color)
Advertisement
Add Comment
Please, Sign In to add comment