-
-
Save stephengruppetta/9b5e70c135eb7d2ae7186aff179833b3 to your computer and use it in GitHub Desktop.
This file contains 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
some_weird_list = [1, 2.2, True] | |
some_weird_ndarray = np.array(some_weird_list) | |
some_weird_ndarray | |
# array([1. , 2.2, 1. ]) | |
# And let's check the 'dtype'… | |
some_weird_ndarray.dtype | |
# dtype('float64') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment