Given a function that does not return any value, What value is thrown by default when executed in the shell. Python shell throws a NoneType object back.
What is the output? values = [[3, 4, 5, 1], [33, 6, 1, 2]] v = values[0][0] for lst in values: for element in lst: if v > element: v = element print(v)