Ask Question
25 January, 22:02

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.

+3
Answers (1)
  1. 25 January, 22:13
    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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers