ezarrays Reference

The Python ezarrays module provides classes that can be used to create "hardware type" arrays in Python. Classes are provided for creating simple 1-D, 2-D, and multi-dimensional arrays. A complete reference is available for each class defined in the module:

Array
Defines a simple 1-D array that stores its elements in linear order.
Array2D
Defines a simple 2-D array in which its elements are arranged in rows and columns.
MultiArray
Defines a multi-dimensional array of 2 or more dimensions.

 


The arrays module is used in the textbook
Algorithms and Data Structures using Python,
by Rance D. Necaise.

  August 30, 2026 at 11:14 AM