As the title say, is there a way to see the full debug output? Often when dealing with maze tasks i like to print the maze to get a visualisation. Often however it wil show up like “[0, 1, 2, 3, …” Is there a way to fix this, get the output as a file, whatever?
You may:
- compress your debug output before printing it out (and decompress it locally), or
- split your debug output into chunks (e.g. split your list into sublists), play your code several times and print one chunk only each time, or
- if possible, copy all inputs and your code and then do the whole debugging entirely offline.