Ask Question
23 July, 22:06

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.

+4
Answers (1)
  1. 24 July, 01:19
    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?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers