monthlyAVG = [["January",6,3],["Februrary",7,3],["March",10,4],["April",13,6],["May",17,9],["June",20,12],["July",22,14],["August",21,14],["September",19,12],["October",14,9],["November",10,6],["December",7,3]]
I have the above code as a set list of values. Is there a way to find the highest and lowest numerical values from the list? I'm new to python so any answers would be appreciated!
I'm hoping to output the highest value and lowest value along with the month name so that it looks something like this:
January 3
July 22