I'm toying again with some bunch of code and I just encountered a problem that I don't seem to be able to solve by myself or by using public documentation.
I have difficulties to display (show_help / debug_text) a "deep" list.
For example:
If I display list = [1,2,3], I get: [1,2,3].
If I display list = [ [1,2,3], [1,2,3] ], I get: [ [1,2,3], [1,2,3] ]
But if I want to display:
Code: Select all
list = [ [ [1,2,3], [1,2,3] ],
[ [1,2,3], [1,2,3] ] ]
Does anyone have an idea?
Regards,
ybeline