Incomplete output of pickle.load in Python
I am making a game and I want to export and import the terrain. It’s a 100×100 grid (2d list of numbers). At first, I export it to a save.dat file using pickle.dump( ) and then i import it using pickle.load( ). But in console I see something like this: Data: [[1, 3, 4, 4,… Read More Incomplete output of pickle.load in Python