array Attributes¶import numpy as np
integers = np.array([[1, 2, 3], [4, 5, 6]])
integers
floats = np.array([0.0, 0.1, 0.2, 0.3, 0.4])
floats
array’s Element Type¶integers.dtype
floats.dtype
array’s Dimensions¶ndim contains an array’s number of dimensions shape contains a tuple specifying an array’s dimensionsintegers.ndim
floats.ndim
integers.shape
floats.shape
array’s Number of Elements and Element Size¶array’s total number of elements with size itemsizeintegers.size
integers.itemsize
floats.size
floats.itemsize
array’s Elements¶for row in integers:
for column in row:
print(column, end=' ')
print()
array as if it were one-dimensional by using flatfor i in integers.flat:
print(i, end=' ')
©1992–2020 by Pearson Education, Inc. All Rights Reserved. This content is based on Chapter 5 of the book Intro to Python for Computer Science and Data Science: Learning to Program with AI, Big Data and the Cloud.
DISCLAIMER: The authors and publisher of this book have used their best efforts in preparing the book. These efforts include the development, research, and testing of the theories and programs to determine their effectiveness. The authors and publisher make no warranty of any kind, expressed or implied, with regard to these programs or to the documentation contained in these books. The authors and publisher shall not be liable in any event for incidental or consequential damages in connection with, or arising out of, the furnishing, performance, or use of these programs.