Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Make the following modifications to the original sentence-generator program: a The prepositional phrase is optional. (It can appear with a certain probability.) b A conjunction
Make the following modifications to the original sentence-generator program:
a The prepositional phrase is optional. (It can appear with a certain probability.)
b A conjunction and a second independent clause are optional: The boy took a drink and the girl played baseball.
c An adjective is optional: the girl kicked the red ball with a sore foot.
You should add new variables for the sets of adjectives and conjunctions.
Program: generator.py Author: Ken Generates and displays sentences using simple grammar and vocabulary. Words are chosen at random. import random articles = ("A", "THE") nouns = ("BOY", "GIRL", "BAT", "BALL") verbs = ("HIT", "SAW", "LIKED") prepositions = ( "WITH", "BY") def sentence(): " "Builds and returns a sentence.""" return nounPhrase(0 + " " + verbPhrase() def nounPhrase(): "" "Builds and returns a noun phrase."" return random.choice (articles) + " " + random.choice ( nouns) def verbPhrase(): "" "Builds and returns a verb phrase.""" return random.choice ( verbs) + " " + nounPhrase(0 + " " + \ prepositionalPhrase() def prepositionalPhrase): """Builds and returns a prepositional phrase.""" return random . choice (prepositions) + " " + nounphrase) def main (0) : ** "Allows the user to input the number of sentences to generate."" number = int ( input ( "Enter the number of sentences: ")) for count in range(number): print ( sentence(0) main()Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started