hello I am kind of confused about the max() function, I have the following code:
a = '9:30'
b = '10:44'
c = '8:22'
x = max(a, b, c)
print (x)
so my question is: why does this return 9:30? and if I were to delete the a from inside max it would return 8:22