Ask Question
20 December, 10:19

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.

+5
Answers (1)
  1. 20 December, 10:31
    0
    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)
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Python: initalize the variable first_name with the value from the user prompt "What is your first name? " initalize the variable first_name ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers