min/max functions in Python - get the minimum/maximum value of the list

Example:

my_list = [15, 6, 7, 8, 35, 12, 14, 4, 10]
print(min(my_list))
print(max(my_list))
Output:
4
35