Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Note: To earn points, your solutions must use user-defined functions (functions written by you!) as covered in this Module. Directions Create a program called strings.py.

image text in transcribed
image text in transcribed
image text in transcribed
image text in transcribed
Note: To earn points, your solutions must use "user-defined functions" (functions written by you!) as covered in this Module. Directions Create a program called strings.py. The following directions will guide you through the creation of the program: (1) Prompt the user for a string that contains two strings separated by a comma. Examples of strings that can be accepted: o Jill, Allen o Jill, Allen o Jill, Allen Ex: Enter input string: Jill, Allen (2) Report an error if the input string does not contain a comma. Continue to prompt until a valid string is entered. Note: If the input contains a comma, then assume that the input also contains two strings. Enter input string: Jill Allen Error: No comma in string. Enter input string: Jill, Allen (3) Using string splitting, extract the two words from the input string and then remove any spaces. Output the two words. Ex: Enter input string: Jill, Allen First word: Jill Second word: Allen (4) Using a loop, extend the program to handle multiple lines of input. Continue until the user enters q to quit. Ex: Enter input string: Jill, Allen First word: Jill Ex: Enter input string: Jill, Allen First word: Jill Second word: Allen Enter input string: Golden , Monkey First word: Golden Second word: Monkey Enter input string: Washington, DC First word: Washington Second word: DC Enter input string: a What To Submit 1. strings.py What To Submit 1. strings.py Be sure to include a comment block at the top of each submitted file with a heading that includes your name, the assignment name, and a brief description of the program/script. See below for an example. Sample comment block: # John Smith # Module 04 Programming Assignment # Part B # This program converts temperatures f

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

Modern Database Management

Authors: Jeffrey A. Hoffer Fred R. McFadden

4th Edition

0805360476, 978-0805360479

More Books

Students also viewed these Databases questions

Question

Recognize the role of personality in emotional intelligence.

Answered: 1 week ago