Home
NOTE: I'm in the middle of upgrading the site. Most things are in place, but some things are missing and/or broken. This includes alt text for images. Please bear with me while I get things fixed.

min max in python

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
~ fin ~