Development Verification
Run the verification commands:
1 2 3 4 5 6 7 | python3 - <<'PY' import numpy as np print(np.__version__) print(np.array([[1, 2], [3, 4]]) @ np.array([[5, 6], [7, 8]])) assert np.__version__ == "2.4.4" PY |
The expected output is as follows:
1 2 3 | 2.4.4 [[19 22] [43 50]] |
Parent topic: Developer Guide