I´m stuck (as usual) and can't find a working solution om my problem. I´m new into this.
I have a list like myList {'00:00': 24.3, '01:00': 31.22, '02:00': 30.69, '03:00': 30.16, '04:00': 31.04, '05:00': **153.48**, '06:00': **140.48**, '07:00': **289.78**}
and want to get rid of all key/values in the list if the value is over a certain threshold ex 100.00 (marked above).
The list I want back would be like: newList {'00:00': 24.3, '01:00': 31.22, '02:00': 30.69, '03:00': 30.16, '04:00': 31.04}
How do I code it?