+ 1
Challenge: Write a program that will ask user for his or her first and last name and print them with last name first.
Write a program that will ask user for his or her first and last name and print them out last name first Using python.
1 ответ
+ 4
def names():
first = input("first name?:")
last = input("last name?:")
print(last, first)
return last, first
print(names())