i have created a python Ordered Dictionary by importing collections and stored it in a file named 'filename.txt'. the file content looks like
OrderedDict([(7, 0), (6, 1), (5, 2), (4, 3)])
i need to make use of this OrderedDict from another program. i do it as
myfile = open('filename.txt','r')
mydict = myfile.read()
i need to get 'mydict' as of Type
<class 'collections.OrderedDict'>
but here, it comes out to be of type 'str'.
is there any way in python to convert a string type to OrderedDict type? using python 2.7
eval) to your question but you really shouldn't be storing it like that. – jamylak May 8 '12 at 12:46eval()– gnibbler May 8 '12 at 12:47evalare essentially religious rather than rational. Every language construct exists for a reason and there's no need to invent something complicated when one singleeval(x)does the trick. Yes, it should be used with caution (like any other thing), but as long as data comes from a trusted source, usingevalis just fine. – thg435 May 8 '12 at 13:21