Build a simple MadLib [Dec. 16, 2011, 4:41 p.m.]
1. Open Wing IDE and create a new file. If you don't know how, look around until you find the icon to click.
2. Type the following in the upper-left corner:
adjective1 = raw_input("Tell me an adjective, and click enter. ") noun1 = raw_input("Tell me a noun (plural), and click enter. ") noun2 = raw_input("Tell me another noun, and click enter. ") adjective2 = raw_input("Tell me an another adjective, and click enter. ") print "Roses are " + adjective1 print noun1 + " are blue" print noun2 + " is " + adjective2 print "And so are you!"
3. Click the green "play" arrow and play your game in the lower-right corner.
4. If it didn't work, look carefully at the code above to see if your code has any errors. Find the errors and fix them.
5. Add a title to your poem and make it print out above the poem.
6. Add a space between your title and the rest of the poem.
7. Copy and paste your code into the discussion area below.