-3
Having the following array of arrays
array1=[indice1[1,2,3], indice2[4,5,6]]
and the second
array2=['nome1','nome2']
How to make the first array (array of arrays = array1) have the same names in its second array indices?
Thus:
print(array1)
[nome1[1,2,3], nome2[4,5,6]]
has something wrong with this syntax in array1=[indice1[1,2,3], indice2[4,5,6]]
– Rodrigo Nogueira