I'm trying to store some data with Python into a two dimensional array and I have some problems with the use of the List object indexes. Let consider for exaple the following list a=[[1,2,3],[4,5,6],[7,8,9]]. Ok, after this command, if you type a[0][0] the result is 1, if you type a[0][:]...