Write a Python program to print first and last name in reverse order with a space between them

Write a Python program to print first and last name in reverse order with a space between them

fname = input("Input your First Name : ")
lname = input("Input your Last Name : ")
print ("Hello  " + lname + " " + fname)

Result

Write a Python program to print first and last name in reverse order with a space between them
Write a Python program to print first and last name in reverse order with a space between them

 

 

 

 

 

 

 

Leave a Comment