Advertisement
Guest User

Untitled

a guest
Jul 11th, 2012
626
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.40 KB | None | 0 0
  1. adjective1 = raw_input("Tell me an adjective, and click enter. ")
  2. noun1 = raw_input("Tell me a noun (plural), and click enter. ")
  3. noun2 = raw_input("Tell me another noun, and click enter. ")
  4. adjective2 = raw_input("Tell me an another adjective, and click enter. ")
  5. print 'My poem\n'
  6. print "Roses are " + adjective1
  7. print noun1 + " are blue"
  8. print noun2 + " is " + adjective2
  9. print "And so are you!"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement