I am dealing with a huge dictionary FPKM, which has ~ 20 keys, but each key has a list of ~1 million values. I tried to use print(FPKM) to print everything, but it only prints the keys. What would be the problem? I also wanted to pickle out this FPKM object, but it turned out that only the keys were stored in the pickle file.
Dear all, I have to apologize that my case was not true. I did
print (sorted(FPKM))
it only printed keys if I do
fpkm=sorted(FPKM)
print (fpkm)
it worked. For pickle, it was the similar case, I used "sorted" instead of an pure object name.
I really appreciate all your answers.