Answered step by step
Verified Expert Solution
Link Copied!

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.

image text in transcribed

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases And Information Systems 1 International Baltic Conference Dbandis 2020 Tallinn Estonia June 19 2020 Proceedings

Authors: Tarmo Robal ,Hele-Mai Haav ,Jaan Penjam ,Raimundas Matulevicius

1st Edition

303057671X, 978-3030576714

More Books

Students also viewed these Databases questions

Question

Discuss whether Peru Ltd is a subsidiary of Singapore Ltd.

Answered: 1 week ago

Question

Identify the types of informal reports.

Answered: 1 week ago

Question

Write messages that are used for the various stages of collection.

Answered: 1 week ago