I have a python list of strings which define some time interval. Something like:
intervals = ["1 days", "7 days", "30 days"]
I need to find the index of the maximum in this interval list. is there any library in python that would allow me to do this?