#coding #python #numpy import numpy as np array = ([[['A', 'B', 'C'], ['D', 'E', 'F'], ['G', 'H', 'I']], [['J', 'K', 'L'], ['M', 'N', 'O'], ['P', 'Q', 'R']], [['S', 'T', 'U'], ['V', 'W', 'X'], ['Y', 'Z', ' ']]]) print( ) #returns number of dimensions print( ) #returns a tuple of integers that represent the shape word = array[0, 0, 0] + array[2, 0, 0] + array[2, 0, 0] print(word)










