From 205597cb746458a1f376642edf3754840812a30c Mon Sep 17 00:00:00 2001 From: AmyBrowne3 <132712390+AmyBrowne3@users.noreply.github.com> Date: Fri, 5 May 2023 17:16:32 -0400 Subject: [PATCH] Update test.py Fixed minor issues --- test.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test.py b/test.py index 09a8528..86b6f27 100644 --- a/test.py +++ b/test.py @@ -4,17 +4,17 @@ Before running this program, please fix the three minor issues :) After a successful run, please submit a pull request! ''' -print('ichangendfit') + 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) + print('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() +read_input() \ No newline at end of file