PYTHON
write a program to accept user input of his first name and last name by declaring variable names and save it. print below sentence using a variable name:
here is your full name. !!!you got a beautiful name
Answers
Answered by
1
fname = input(“Enter first name:”)
lname = input(“Enter last name:”)
print(“here is your full name.” +fname “ “ +lname “!!! You got a beautiful name”)
lname = input(“Enter last name:”)
print(“here is your full name.” +fname “ “ +lname “!!! You got a beautiful name”)
Similar questions