Hello,
In an application, I manage a list containing lists.
ex. [["toto", 12, [0.5, 0.9]], ["tata", 33, [0.4, 0.1]]]
I save this list in a .txt file.
When I retrieve this .txt file, my list is in text format. "[["toto", 12, [0.5, 0.9]], ["tata", 33, [0.4, 0.1]]]"
How can I transform this text into a list as it was originally ?