import numpy as np
python_cell = np.empty((3, 2), dtype=object)
python_cell[0, 0] = np.zeros((4, 4))
python_cell[0, 1] = np.ones((5, 4))
python_cell[1, 0] = np.ones((2, 2))
python_cell[1, 1] = 'Element'
python_cell[2, 0] = 1
python_cell[2, 1] = 'A'
print(python_cell.shape)
print(python_cell)
'''
(3, 2)
[[array([[0., 0., 0., 0.],
[0., 0., 0., 0.],
[0., 0., 0., 0.],
[0., 0., 0., 0.]]) array([[1., 1., 1., 1.],
[1., 1., 1., 1.],
[1., 1., 1., 1.],
[1., 1., 1., 1.],
[1., 1., 1., 1.]])]
[array([[1., 1.],
[1., 1.]]) 'Element']
[1 'A']]
'''
该Python数组包含了矩阵、字符串、字符和数字类型的数据。