In Edhesive, for lesson 1.7 question two, I am not sure how to do it. It says: Write a program that asks the user to input their first and last names. The first prompt should state:
Please input your first name:
The second prompt should state:
Please input your last name:
After accepting the inputs, your program should output the input in the form last name, first name.
Answers
Answered by
0
Explanation:
first_name = input('Please input your first name: ')
first_name = input('Please input your first name: ')last_name = input('Please input your last name: ')
first_name = input('Please input your first name: ')last_name = input('Please input your last name: ')print(last_name + ', ' + first_name)
HOPE THIS HELPS YOU
MARK AS BRILLIANT
Similar questions