Question: 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.



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
Get step-by-step solutions from verified subject matter experts
