I wanted to keep two decimal places after the decimal and keep the trailing 0s for example. 17.7 I want it to be 17.70, or 22.00. So, I have a list of numbers I want to return the maximum and round so that it fits that format.
list = [11, 12.3, 14, 200.33, 49.08, 207.2]
a = max(round(list), 2)
This is what I have done, but it still does not round all the points separately and keep the 2 decimal places. I am not tied to keeping round inside of max, I was just experimenting.