You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print('values in tuple : {} | object type is {}'.format(my_tuple,type(my_tuple)))
print('\aamount of values in tuple : {}\nmin value in tuple is : {}\nmax value in tuple is : {}\nsum of all values in tuple is : {}'.format(len(my_tuple),min(my_tuple),max(my_tuple),sum(my_tuple)))