fork download
  1. # Mad Libs - Funny Story Generator
  2.  
  3. print("=" * 40)
  4. print(" WELCOME TO MAD LIBS!")
  5. print("=" * 40)
  6. print("Give me some words, and I'll make a silly story.\n")
  7.  
  8. # Get words from the user
  9. name = input("Give me a name (a friend or celebrity): ")
  10. place = input("A place (school, mall, Mars): ")
  11. adjective1 = input("An adjective (silly, scary, awesome): ")
  12. animal = input("An animal: ")
  13. verb = input("A verb ending in -ing (running, dancing): ")
  14. food = input("A type of food: ")
  15. number = input("A number: ")
  16. adjective2 = input("Another adjective: ")
  17.  
  18. # Create the story
  19. print("\n" + "=" * 40)
  20. print("Here's your story:\n")
  21.  
  22. print(f"One day, {name} went to {place}. It was a very {adjective1} day.")
  23. print(f"Suddenly, a giant {animal} appeared and started {verb}!")
  24. print(f"{name} yelled, 'Look out!' and threw a {food} at the {animal}.")
  25. print(f"The {animal} ate the {food} {number} times and became {adjective2}.")
  26. print(f"So {name} became friends with the {animal}, and they lived happily ever after.")
  27.  
  28. print("\n" + "=" * 40)
  29. print("THE END - Hope you laughed! 😄")
Success #stdin #stdout 0.08s 14172KB
stdin
Jose
school
sad
penguin
jumping
apple
67
silly
stdout
========================================
       WELCOME TO MAD LIBS!
========================================
Give me some words, and I'll make a silly story.

Give me a name (a friend or celebrity): A place (school, mall, Mars): An adjective (silly, scary, awesome): An animal: A verb ending in -ing (running, dancing): A type of food: A number: Another adjective: 
========================================
Here's your story:

One day, Jose went to school. It was a very sad day.
Suddenly, a giant penguin appeared and started jumping!
Jose yelled, 'Look out!' and threw a apple at the penguin.
The penguin ate the apple 67 times and became silly.
So Jose became friends with the penguin, and they lived happily ever after.

========================================
THE END - Hope you laughed! 😄