Computer Science, asked by harshplaz99, 9 days ago

Write the program in Python to print your name & surname with the space of a tab key .

Answers

Answered by burhankareem63
1

Answer:

fname = input("Input your First Name : ")

lname = input("Input your Last Name : ")

print ("Hello " + lname + " " +

Explanation:

Input your First Name : Dany

Input your Last Name : Boon

Hello Boon Dany

Similar questions