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
20 lines (17 loc) · 648 Bytes
/
Copy pathtest.py
File metadata and controls
20 lines (17 loc) · 648 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
'''
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!
'''
print('ichangendfit')
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 = ;
# Please fix the following print statement
'Welcome %s %s'%(first_name,last_name)
#Supply the approriate return (We aren't actually returning anything :) )
return
read_input()