From 0f683bd193d904d83ff98fe1fc93fa557b162f11 Mon Sep 17 00:00:00 2001 From: lauriea Date: Mon, 10 May 2021 18:14:15 -0400 Subject: [PATCH] Fixed the test.py file. --- test.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/test.py b/test.py index d1a52b7..ec3af11 100644 --- a/test.py +++ b/test.py @@ -8,13 +8,15 @@ 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 = ; - + print("please enter your first name"); + first_name = input(); + print("please enter your last name"); + 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 :) ) - return - + return 0 + read_input()