From 07e8cff8cf5afeefa103df714fbb0e48cd35d36c Mon Sep 17 00:00:00 2001 From: Matt Stollman Date: Mon, 10 May 2021 18:34:17 -0400 Subject: [PATCH] Changes to test.p --- test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test.py b/test.py index d1a52b7..36b4c48 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 = Matt ; + last_name = Stollman ; # Please fix the following print statement - 'Welcome %s %s'%(first_name,last_name) + 'Welcome Matt Stollman'%(first_name,last_name) #Supply the approriate return (We aren't actually returning anything :) ) return