From eafbf13ad32600056d5b090b79fa967e96cd1070 Mon Sep 17 00:00:00 2001 From: coraneave <132712310+coraneave@users.noreply.github.com> Date: Fri, 5 May 2023 17:17:47 -0400 Subject: [PATCH 1/2] Update test.py fixed minor errors --- test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test.py b/test.py index d1a52b7..8f7125a 100644 --- a/test.py +++ b/test.py @@ -8,13 +8,13 @@ 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(); + last_name = input(); # Please fix the following print statement 'Welcome %s %s'%(first_name,last_name) - #Supply the approriate return (We aren't actually returning anything :) ) + #Supply the appropriate return (We aren't actually returning anything :) ) return read_input() From 821f3e731ade218d1c3fb19a3f8cda2c13f4b244 Mon Sep 17 00:00:00 2001 From: coraneave <132712310+coraneave@users.noreply.github.com> Date: Fri, 5 May 2023 17:18:27 -0400 Subject: [PATCH 2/2] Update test.py fixed print statement --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 8f7125a..ef81153 100644 --- a/test.py +++ b/test.py @@ -12,7 +12,7 @@ def read_input(): last_name = input(); # Please fix the following print statement - 'Welcome %s %s'%(first_name,last_name) + print('Welcome %s %s'%(first_name,last_name)) #Supply the appropriate return (We aren't actually returning anything :) ) return