Obtain the first name and last name of the user in a python program to print the complete name using the following formats of print statements
Answers
Answered by
1
a=input("Enter your first name:")
b=input("Enter your last name:")
c=''
d=a+c+b
print ("Your full name is",d)
Similar questions