From f06defd60852e3463e37a0e407ac7bc4896f7102 Mon Sep 17 00:00:00 2001 From: hussainsr Date: Mon, 10 May 2021 18:09:36 -0400 Subject: [PATCH] Finished making the changes --- test.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test.py b/test.py index d1a52b7..d5a2582 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 = ; + print('\nPlease enter firstname:\t') + first_name = input() + print('\nPlease enter lasttname:\t') + last_name = input() - # Please fix the following print statement - 'Welcome %s %s'%(first_name,last_name) + # Please fix the following print statement + print('\n\nWelcome %s %s'%(first_name,last_name)) - #Supply the approriate return (We aren't actually returning anything :) ) - return read_input()