I have a list of lists of data on the following form (one element):
{"NYSE:AEM", 7.13*10^9, "Gold", {{2014, 4, 16}, {2014, 5, 2}, {2014, 7, 31}}}
And all I want to do is export it, and then import it again. But in what format am I supposed to do that? Using .dat will corrupt the data:
{"NYSE:AEM", 7.13*10^9, "Gold", "{{2014,", "4,", "16},", "{2014,", "5,", "2},",\"{2014,", "7,", "31}""}"}
And I am interested in saving other sorts of lists of lists as well, with different formats mixed (text, integers, dates, ...).
Is there a way to safely save any mathematica list so that it can be retrieved again?
Comments
Post a Comment