Python Chapter Seven After-Class Exercises (8)

Create a 2X3X4 array m8 with all 7s. Hint: Use Numpy's full function.

m8 = np.full((2,3,4),7)

Guess you like

Origin blog.csdn.net/qq_53029299/article/details/115112219