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
2
person = input('you got a beautiful name: ')
print('Hello', person)
Similar questions