Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Design And SQL For DB2

Authors: James Cooper

1st Edition

1583473572, 978-1583473573

More Books

Students also viewed these Databases questions

Question

a. How many different ethnic groups were portrayed in this show?

Answered: 1 week ago

Question

What do Dimensions represent in OLAP Cubes?

Answered: 1 week ago