I have this list in a txt file:
[1, "hello", {"Name": "Tom"}, [2, 3, "hello_hello"], (800, 600)]
There are an int
, a str
, a dict
, a list
and a tuple
(not that it was really the matter).
I'd like to read this like this was a list (as it really is) not like one string.
I'd like to get a result like:
elem[0] = 1
elem[1] = "hello"
elem[2] = {"Name": "Tom"}
elem[3] = [2, 3, "hello_hello"]
elem[4] = (800,600)
Also it would be really nice if the dictionary evaluated eval()
immediately, but that's not really the point.