wei/unit_11/names.py

13 lines
331 B
Python

from name_function import get_formatted_name
print("enter q at any time to quit")
while True:
first = input("Enter your first name: ")
if first == "q":
break
last = input("Enter your last name: ")
if last == "q":
break
formatted_name = get_formatted_name(first, last)
print(formatted_name)