Question: Create a Python program First, ask the user to enter their name, first and last. Do not ask them to type it in separately, but
Create a Python program First, ask the user to enter their name, first and last. Do not ask them to type it in separately, but use one input statement to get their first and last name together.
Then, perform the following operations on their name:
Determine the length of their name and print it out
Print each letter of their name on a separate line
Create a variable that will hold only their first name, and print it out
Create a variable that will hold only their last name, and print it out
Print their name in all uppercase
Print their name in all lowercase
Ask the user to enter a letter that they would like to find in their name. Count how many times that letter occurs in their name, and print out the count. Be sure to count both lowercase and uppercase instances of the letter
Your program should meet the following requirements:
Use comments as necessary to communicate to me the reader of the program
Use a consistent naming convention for your variables preferably using underscores
Use a consistent indentation format tabs vs spaces
Use meaningful variable names
Separate your program into sections, indicated by comments: import statements, function definitions, and program logic
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
