This is probably a naive question from a programming languages standpoint (the answer must be no).
Was there ever a version of python that had case-insensitive dicts by default?
Ie, if I queried dict['value']
it would be the same as dict['VALUE']
?
I just ask because I am working with some code written in Python 3.7, but I am working in Python 3.8.5. I could either just rewrite the code, or try a different version of Python - not sure which will take longer.
Perhaps this is also a function of pandas, which went from pandas 1.0.4 to '1.1.3'. I will check more on this.