D:\Baldwin\AA-School\PyProg>python Lists08.py
Create and print a three-dimensional array list
[[[[1], [2]], [[3], [4]]], [[[5], [6]], [[7], [8]]]]
Print each element
[1]
[2]
[3]
[4]
[5]
[6]
[7]
[8]

D:\Baldwin\AA-School\PyProg>
 

Figure 10