Step 2: Steal Words From a Human ๐ค
Right now your story works โ but you picked the words, so you already know the joke. Boring! ๐ด
Time to hand the microphone to someone else. input() asks a question,
waits, and hands you whatever they typed:
noise = input("Give me a loud noise: ")
The trick: input() gives back exactly the same kind of thing your
variables already hold โ text. So you can swap it straight in, and the rest
of your story keeps working untouched.
Your mission
- Turn all three word variables into
input()questions - Make the questions specific and weird โ "Give me a slimy animal:" beats "Animal:"
- Leave the story prints exactly as they are
- Run it and type in your silliest answers ๐คช
Your code
Press โถ Run to see what your code does!