I am using python 2.7 .I am creating 3 lists (float values (if it matters at all)), i am using json object to save it in a file.
Say for eg.
L1=[1,2,3,4,5]
L2=[11,22,33,44,55]
L3=[22,33,44,55,66]
b={}
b[1]=L1
b[2]=L2
b[3]=L3
json.dump(b,open("file.txt","w"))
I need to read these values back from this "file.txt" into the 3 list. Can anyone please point me to the resource? How do i proceed with retrieving these values?