A Word Game

To make the word game, you need only a few kinds of commands.  The first command you need gets input from the user, and stores it in a variable.  Variable names can’t have spaces in them and should start with a small letter.

ice_cream_flavor = input("Please give me a flavor of ice cream: ")

Then there are print statements.  A print statement can print just words like this:

print("Printing some words.")

or you can print just a variable, like the ice_cream_flavor variable we filled before

print(ice_cream_flavor)

Or you can print both, like this:

print("My favorite ice cream flavor is ", ice_cream_flavor)

To make the word game, first get some words from the user, then use them to construct a story.  Make a great story!