Skip to content
Permalink
Late-branch
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
# masud is not a typo
def getHours():
"""
getHours function
Description: collects information about the hours for a user. Different calculations can be made from this later on.
Input : None, steamID can be added later, or gameName once that has been implemented.
Output: Returns the number of hours, for now this is manual and very simple as a result
"""
manualHours = input("Enter hours >>>")
hours = manualHours
return hours
# ====