diff --git a/test.py b/test.py index d1a52b7..b69261e 100644 --- a/test.py +++ b/test.py @@ -5,16 +5,18 @@ After a successful run, please submit a pull request! ''' -def read_input(): +def read_input(first,last): # 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 = first; + last_name = last; # 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() +first = input('Enter your first name: ') +last = input('Enter your last name: ') + +read_input(first,last) diff --git a/yourname b/yourname new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/yourname @@ -0,0 +1 @@ +