From 964bd36bfa01f7f2765ac2f98e59eedcea201147 Mon Sep 17 00:00:00 2001 From: m-moring <132712324+m-moring@users.noreply.github.com> Date: Fri, 5 May 2023 17:18:44 -0400 Subject: [PATCH] Update test.py --- test.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test.py b/test.py index d1a52b7..c3bb957 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('What is your first name?') + last_name = input('What is your 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 -read_input() +read_input()