From a4bde14fd712471f6bab5a5029acf11a91aae40d Mon Sep 17 00:00:00 2001 From: Pankhuri-Baranwal <115352009+Pankhuri-Baranwal@users.noreply.github.com> Date: Tue, 25 Oct 2022 02:05:43 +0530 Subject: [PATCH] Create Madlibgenerator.py --- Madlibgenerator.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Madlibgenerator.py diff --git a/Madlibgenerator.py b/Madlibgenerator.py new file mode 100644 index 0000000..c2ca2b7 --- /dev/null +++ b/Madlibgenerator.py @@ -0,0 +1,26 @@ +# Loop back to this point once code finishes +loop = 1 + +while (loop < 10): + + # All the questions that the program asks the user + noun = input("Choose a noun: ") + p_noun = input("Choose a plural noun: ") + noun2 = input("Choose a noun: ") + place = input("Name a place: ") + adjective = input("Choose an adjective (Describing word): ") + noun3 = input("Choose a noun: ") + + # Displays the story based on the users input + print ("------------------------------------------") + print ("Be kind to your",noun,"- footed", p_noun) + print ("For a duck may be somebody's", noun2,",") + print ("Be kind to your",p_noun,"in",place) + print ("Where the weather is always",adjective,".") + print () + print ("You may think that is this the",noun3,",") + print ("Well it is.") + print ("------------------------------------------") + + # Loop back to "loop = 1" + loop = loop + 1