programming-examples/python/_Basics/Print first and last name in reverse order with a space between them.py

3 lines
130 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
fname = input("Input your First Name : ")
lname = input("Input your Last Name : ")
print ("Hello " + lname + " " + fname)