I want to rewrite/replace a 2d list or numpy array (whatever is easier) in the console: e.g.:
[[_,_,_],
[_,_,_],
[x,_,_]]
will be replaced with
[[_,_,_],
[x,_,_],
[_,_,_]]
which will be replaced with
[[x,_,_],
[_,_,_],
[_,_,_]]
and so on...so it looks like the x is moving across the "board". I already wrote the function that enables me to print the lists one after the other but i would rather replace them in the console output.
thanks in advance for help!