PyMOTW: array

The array module defines a sequence data structure that looks very much like a list except that all of the members have to be of the same type. The types supported are listed in the standard library documentation. They are all numeric or other fixed-size primitive types such as bytes.

Read more at pymotw.com: array