Last active
July 17, 2019 23:22
-
-
Save GeorgeSeif/4feeac6004ccbeef1290cbd095c1a301 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy as np | |
| # Gets the number of axes (dimensions) | |
| np_array.ndim | |
| # Gets the dimensions of the array | |
| np_array.shape | |
| # The total number of elements of the array | |
| # (product of all elements # in np_array.shape) | |
| np_array.size | |
| # Describe the type of the elements in the array | |
| np_array.dtype |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment