From 7bd0fb89c842f399bc17377dfde6746845d86e69 Mon Sep 17 00:00:00 2001 From: mohammed masud Date: Fri, 30 Oct 2020 16:16:56 +0000 Subject: [PATCH] Added code for the manual entry of hours --- time.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 time.py diff --git a/time.py b/time.py new file mode 100644 index 0000000..369978c --- /dev/null +++ b/time.py @@ -0,0 +1,13 @@ +# masud + +def getHours(): + ''' + getHours function + Description: collects information about the hours for a user. + Input : None, steamID can be added later, or gameName once that has been implemented. + Output: Returns the number of hours, + ''' + + manualHours = input("Enter hours >>>") + +# ====