From 301e52099e9f8100331f6b9ef0f4922b2b27b423 Mon Sep 17 00:00:00 2001 From: Trenisha Goslee <60710670+tgoslee@users.noreply.github.com> Date: Tue, 10 May 2022 13:26:10 -0400 Subject: [PATCH 1/4] Update main.py --- main.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/main.py b/main.py index eb37a75..2486877 100644 --- a/main.py +++ b/main.py @@ -1 +1,6 @@ #Mad Libs Generator Project +// Loop back to this point once code finishes +loop = 1 +while (loop < 10): + pass +// All the questions that the program asks the user From f295c55c69e54257a06fd1b7aae173bded87dc23 Mon Sep 17 00:00:00 2001 From: Trenisha Goslee <60710670+tgoslee@users.noreply.github.com> Date: Tue, 10 May 2022 13:46:31 -0400 Subject: [PATCH 2/4] Update main.py --- main.py | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/main.py b/main.py index 2486877..9ccfb0b 100644 --- a/main.py +++ b/main.py @@ -1,6 +1,18 @@ #Mad Libs Generator Project -// Loop back to this point once code finishes -loop = 1 -while (loop < 10): - pass -// All the questions that the program asks the user +verb_1 = input("Enter a verb of choice, and press enter:") +adj_1 = input("Enter a adjective of choice, and press enter:") +verb_2 = input("Enter second verb of choice, and press enter:") +body_part = input("Enter a body part name of choice, and press enter:") +adverb = input("Enter an adverb of choice, and press enter:") +body_part_2 = input("Enter any body name of your choice,and press enter:") +noun = input("Enter a noun of choice, and press enter:") +verb_3 = input("Enter the third verb of choice, and press enter:") +animal = input("Enter name of any animal of choice, and press enter:") +noub_2 = input("Enter an noun of choice , and press enter:") +verb_4 = input("Enter the fourth verb of choice, and press enter:") +adj_2 = input("Enter an adjective of choice, and press enter:") +color = input("Enter any color name, and press enter:") + +story = "Most doctors agree that bicycle of" + verb_1 + " is a/an " + adj_1 + " form of exercise." + verb_2 +" a bicycle enables you to develop your " + body_part + " muscles as well as " + adverb + " increase the rate of a " + body_part_2 + " beat. More " + noun + " around the world "+ verb_3 +" bicycles than drive "+ animal +". No matter what kind of "+ noun_2 +"you "+ verb_4 + ", always be sure to wear a/an " +adj_2+ " helmet.Make sure to have " + color + " reflectors too! " + +print(story) From 9936176f9d523aae26e6b20a3ce52deb6a2f6e36 Mon Sep 17 00:00:00 2001 From: Trenisha Goslee <60710670+tgoslee@users.noreply.github.com> Date: Fri, 13 May 2022 17:20:36 -0400 Subject: [PATCH 3/4] Update main.py --- main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/main.py b/main.py index 9ccfb0b..09b94df 100644 --- a/main.py +++ b/main.py @@ -4,7 +4,6 @@ verb_2 = input("Enter second verb of choice, and press enter:") body_part = input("Enter a body part name of choice, and press enter:") adverb = input("Enter an adverb of choice, and press enter:") -body_part_2 = input("Enter any body name of your choice,and press enter:") noun = input("Enter a noun of choice, and press enter:") verb_3 = input("Enter the third verb of choice, and press enter:") animal = input("Enter name of any animal of choice, and press enter:") From eb9ca4b86a858d0aed61121d81665097d0e7e413 Mon Sep 17 00:00:00 2001 From: Trenisha Goslee <60710670+tgoslee@users.noreply.github.com> Date: Fri, 13 May 2022 17:21:51 -0400 Subject: [PATCH 4/4] Update main.py --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 09b94df..9d7c40c 100644 --- a/main.py +++ b/main.py @@ -2,7 +2,7 @@ verb_1 = input("Enter a verb of choice, and press enter:") adj_1 = input("Enter a adjective of choice, and press enter:") verb_2 = input("Enter second verb of choice, and press enter:") -body_part = input("Enter a body part name of choice, and press enter:") +body_part = input("Enter a body part name and press enter:") adverb = input("Enter an adverb of choice, and press enter:") noun = input("Enter a noun of choice, and press enter:") verb_3 = input("Enter the third verb of choice, and press enter:")