programming-examples/python/_Basics/Print first and last name in reverse order with a space between them.py
2019-11-15 12:59:38 +01:00

3 lines
130 B
Python

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