Advertisement
bobhig

icecream.py

May 16th, 2021
731
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.94 KB | None | 0 0
  1. noun_1 = input("Give me a plural noun ")
  2. verb = input("Give me a verb ending in ed ")
  3. noun_2 = input("Give me another plural noun ")
  4. noun_3 = input("Give me a noun ")
  5. noun_4 = input("Give me another noun ")
  6. noun_5 = input("Give me another noun ")
  7. noun_6 = input("Give me another noun ")
  8. adjective = input("Give me an adjective ")
  9. food_1 = input("Give me a food ")
  10. food_2 = input("Give me another food ")
  11.  
  12. ### Run the game
  13.  
  14. print("Ice cream is a frozen dessert made from " + noun_1 + ", with added flavours and sweeteners")
  15. print("This mixture is quickly frozen while it is " + verb + ", so that large " + noun_2 + " do not form.")
  16. print("Some ice cream is made with " + noun_3 + " extracted from seaweed, so that it is not " + adjective)
  17. print("There are many different flavours of ice cream, such as " + food_1 + " and " + food_2)
  18. print("Ice cream often has things added to it for flavour, like " + noun_4 + ", " + noun_5  + " or " + noun_6 + ".")
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement