Do Now
1.Type and run the following code.
class Time(object):
def __init__(self, hour, minute, second):
self.hour = hour
self.minute = minute
self.second = second
time1 = Time(5, 32, 0)
time2 = Pet(23, 11, 11)
print(time1)
print(time2)
2.Write down how you would distinguish between time1 and time2?
3.What happens if you try to add time1 add time2?