Question: In Python: Define and Invoke Main using Def main(): Write a program that prompts the user to enter a list of names. Each person's name
In Python: Define and Invoke Main using Def main():

Write a program that prompts the user to enter a list of names. Each person's name is separated from the next by a semi-colon(';') and the names are entered lastName firstName. Your program should then print out the names, one per line, with the first names first followed by the last names. Here is a sample interaction: Please enter your list of names: Falcon, Claudio; Ford, Eric, Owen, Megan, Rogers, Josh, St. John, Katherine You entered Claudio Falcon Eric Ford Megan Owen Josh Rogers Katherine St. John Thank you for using my name organizerl Hint: Do this problem in parts: first, split the list by person (what should the delimiter be?). Then, split each of person's name into first and last name (what should the delimiter be here?) Write a program that will count the number of vowels found in a string Sample run main) Enter a string Ohio The number of vowels in Ohio is 3 Hint: You will need to use the string function count) multiple times
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
