From 176770cbd60b7a2689c8a9ad9458162122df73d7 Mon Sep 17 00:00:00 2001 From: isabellengo <123783045+isabellengo@users.noreply.github.com> Date: Fri, 5 May 2023 17:13:18 -0400 Subject: [PATCH] Update test.py --- test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.py b/test.py index 09a8528..b1a810c 100644 --- a/test.py +++ b/test.py @@ -8,8 +8,8 @@ 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 = "Isabelle" ; + last_name = "Ngo" ; # Please fix the following print statement 'Welcome %s %s'%(first_name,last_name)