๐Ÿ PyQuest๐Ÿคช Game: Mad Libs Machine ยท ๐Ÿ“– Step 1: Write the Silly Story
โญ 0 XP๐Ÿ Python is waking upโ€ฆ

Step 1: Write the Silly Story ๐Ÿ“–

You're about to build a Mad Libs Machine โ€” a program that begs people for weird words and then drops them into a story that makes no sense. ๐Ÿคช

Every Mad Libs starts with a story that has holes in it. In Python, those holes are just variables:

weather = "spaghetti rain"
print(f"Tomorrow we expect {weather} all afternoon.")

The magic part: change the variable at the top, run again, and the whole story changes. The story stays the same โ€” the silliness swaps out.

Your mission

  1. Make three variables named animal, food and place โ€” fill them with the silliest things you can think of
  2. Print a story that is at least 3 lines long
  3. Use all three variables somewhere in the story
  4. Run it, then change one variable and run it again โ€” watch the story change!

Your code

Press โ–ถ Run to see what your code does!