diff --git a/test.py b/test.py index d1a52b7..72752c2 100644 --- a/test.py +++ b/test.py @@ -8,11 +8,11 @@ def read_input(): # Please allow the user to enter their first and last name from the terminal # Hint: We call this a raw input - first_name = ; - last_name = ; + first_name = input("Enter first name: ") + last_name = input("Enter last name: ") # Please fix the following print statement - 'Welcome %s %s'%(first_name,last_name) + print('Welcome %s %s'%(first_name,last_name)) #Supply the approriate return (We aren't actually returning anything :) ) return