Example of string to list comparison in Python 2 vs Python 3
I’m researching the differences between Python 2 and Python 3. It’s been mentioned that string to list comparisons do not work in Python 3 as they’re of limited value. I’m trying to find an example of this. Here’s what I’ve tried:
Convert Python2 to Python3
I’m currently working on upgrading a system that I have at work, written in Python2.
I wanted to rewrite it in Python3 but after the first tests, it appears that lots of libraries it uses are also written in python2 (it was made a long time ago and it’s all homemade solutions).