lets say I have array a where:
a = [[1.0,2.5,3.0],[2.0,5.0,3.0]]
why does doing print a[0][:0:]
output:
[]
meanwhile doing print a[0][0]
outputs(the first Item in the first array within the array): [1.0]
I eventually want to take moving averages of multi-dimensional arrays. I want to make sure I understand the syntax first.