Question: 2 . 1 2 LAB: Name format Many documents use a specific format for a person's name. Write a program that reads a person's name

2.12 LAB: Name format
Many documents use a specific format for a person's name. Write a program that reads a person's name in the following format:
firstName middleName lastName (in one line)
and outputs the person's name in the following format:
lastName, firstInitial.middleInitial.
Ex: If the input is:
Pat Silly Doe
the output is:
Doe, P.S.
If the input has the following format:
firstName lastName (in one line)
the output is:
lastName, firstInitial.
Ex: If the input is:
Julia Clark
the output is:
Clark, J.
def format_name(name):
name_parts = name.split()
last_name = name_parts[-1]
first_initial = name_parts[0][0]
middle_initial = name_parts[1][0] if len(name_parts)==3 else ''
formatted_name = f"{last_name},{first_initial.upper()}"
if middle_initial:
formatted_name += f".{middle_initial.upper()}."
return formatted_name
# Read the name from the user
name_input = input("Enter the person's name: ")
# Format and print the name
formatted_name = format_name(name_input)
print(formatted_name)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!