forked from crhea93/gitTraining
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.py
More file actions
22 lines (17 loc) · 735 Bytes
/
Copy pathtest.py
File metadata and controls
22 lines (17 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
'''
Test python script for Git Training Purposes
This program is written to ask the user their name and print it in the terminal.
Before running this program, please fix the three minor issues :)
After a successful run, please submit a pull request!
'''
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 = first;
last_name = last;
# Please fix the following print statement
print('Welcome %s %s'%(first_name,last_name))
#Supply the approriate return (We aren't actually returning anything :) )
first = input('Enter your first name: ')
last = input('Enter your last name: ')
read_input(first,last)