ask the user for their first name and store it in the variable first_name. ask for their last name and store…

ask the user for their first name and store it in the variable first_name. ask for their last name and store it in the variable last_name. combine the strings with a space between them and store it in a variable called full_name. print the name in the following format: \your full name is ______\ ex. what is your first name? ms. what is your last name? whit your full name is ms. whit

ask the user for their first name and store it in the variable first_name. ask for their last name and store it in the variable last_name. combine the strings with a space between them and store it in a variable called full_name. print the name in the following format: \your full name is ______\ ex. what is your first name? ms. what is your last name? whit your full name is ms. whit

Answer

Explanation:

Step1: Get first - name input

first_name = input("What is your first name? ")

Step2: Get last - name input

last_name = input("What is your last name? ")

Step3: Combine names

full_name = first_name + " " + last_name

Step4: Print full name

print(f"Your full name is {full_name}")

Answer:

The code above will perform the required operations. No single final answer value as it's a code - based task for input and output operations.