Question: Python: Write a program that gets a string containing a persons first, middle, and last names, and then display their first, middle, and last initials.
Python: Write a program that gets a string containing a persons first, middle, and last names, and then display their first, middle, and last initials. The name must be entered on one line, per the example below. For example, if the user enters Juan Sebastian Calero, the program should display J. S. C.
When prompting the user you must always include text which lets the user know what should be inputted. Write a program that gets a string containing a person's first, middle, and last names, and then display their first, middle, and last initials. The name must be entered on one line, per the example below. For example, if the user enters Juan Sebastian Calero, the program should display J. S. C. Example program run: Enter your full name: Juan Sebastian Calero Your intials are: J. S. C
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
