From 0b9375610c98f0293e976ee0c6ef42fa49900032 Mon Sep 17 00:00:00 2001 From: William Woodley <55472102+wjwoodley@users.noreply.github.com> Date: Mon, 10 May 2021 18:58:59 -0300 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..c4b01cd 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(); + 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()