Python: initalize the variable first_name with the value from the user prompt "What is your first name? " initalize the variable first_name with the value from the user prompt "What is your last name? " concatenate first and last name and store in the variable full_name print the full name as a complete sentence including punctuation.

Answer :

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

last_name =] input("{What is your last name")

full_name = first_name + last_name

print("My full name is ", full_name)

Other Questions