From af72f501aa07d5ad60bfa4fefedfa93ae9ba1e01 Mon Sep 17 00:00:00 2001 From: Madelynn MAst Date: Thu, 5 May 2022 13:32:49 -0400 Subject: [PATCH] Changes changed the input function and print function to work --- test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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