I know that if I wanted to create a 3D array in Python, I could do this:
[[[\'#\' for i in range(3)] for j in range(3)] for k in range(3)]
That sa