Head's Up: JavaScript is either turned off or not working properly in your browser. Some parts of this page may not work properly.
Getting the min and max values is done like this:
# min()
min_example = min(3, 7, 2, 100) print(min_example)
2
# max()
min_example = max(3, 7, 2, 100) print(min_example)
100