init commit

This commit is contained in:
Mikayla Dobson
2022-04-06 11:12:40 -05:00
commit a373440311
3 changed files with 57 additions and 0 deletions

16
user_input.py Normal file
View File

@@ -0,0 +1,16 @@
user_prompt = """
Welcome to the personal time stamp program.
This program is intended to help you keep track of your work hours on personal projects.
Please choose from the following options:
1) Select all timestamps
2) Find a timestamp by date range
3) Calculate total hours for the week
4) Calculate complete sum of hours
"""
def parse_input():
print(user_prompt)
response = input("Enter your selection: ")
print()