Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This is a practice question intended to help with a course whos grade break down is 5 quizes. this is not to be submitted, and

This is a practice question intended to help with a course whos grade break down is 5 quizes. this is not to be submitted, and is for my own education benefit

practice making a python program that uses random number generation to create sentences. The program should use four lists called article, noun, verb, and preposition. The program should produce a sentence by selecting a word at random from each array in the following order: article, noun, verb, preposition, article, and noun. As each word is picked, it should be concatenated to the previous words. The words should be separated by spaces. When the final sentence is output, it should start with a capital letter and end with a period. The program should generate 20 such sentences. After the preceding program is written and working, modify the program to produce a short story consisting of several of these sentences.

image text in transcribed
article = ['the', 'a', 'one', 'some', 'any'] noun = ['boy', 'girl', 'dog , 'town', 'car'] verb = ['drove', 'jumped', ran', 'walked', 'skipped'] preposition = ['to', 'from', 'over', 'under', '011']

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

Students also viewed these Programming questions