Advertisement
skip420

basicMadLibs

Jun 17th, 2022
834
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.39 KB | None | 0 0
  1. # skip420@skip420:~/Desktop$ python3 madlib2.py
  2. Enter a color: green
  3. Enter a plural noun: people
  4. Enter a Verb: play
  5. this is green
  6. people are blue
  7. now act out ! and say  play
  8.  
  9.  
  10.  
  11. color = input("Enter a color: ")
  12. pluralNoun = input("Enter a plural noun: ")
  13. anything = input("Enter a Verb: ")
  14.  
  15. print("this is", color)
  16. print(pluralNoun + " are blue")
  17. print("now act out ! and say ", anything)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement