Define a class named Workout whose parent is the generic Python object.
A workout is created from three values: a start time (a string), an end time (a string), and the calories burned (a number). Every workout object must end up with five data attributes: the three values that were passed in, stored under the names start, end and calories, plus two more that are never passed in - icon, always the string '[W]', and kind, always the string 'Workout'.
Give the class a getter for each of the three values that were passed in: get_start(), get_end() and get_calories().
w = Workout('9/30/2021 1:35 PM', '9/30/2021 1:57 PM', 200) w.get_calories() # 200 w.get_start() # '9/30/2021 1:35 PM'