Computer Science, asked by Astro4604, 8 months ago

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 kaushalmamta1290
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