This module defines an object type which can compactly represent an array ofbasic values: characters, integers, floating point numbers. Arrays are sequencetypes and behave very much like lists, except that the type of objects stored inthem is constrained. The type is specified at object creation time by using atype code, which is a single character. The following type codes aredefined:
Type code | C Type | Python Type | Minimum size in bytes |
---|---|---|---|
'b' | signed char | int | 1 |
'B' | unsigned char | int | 1 |
'u' | Py_UNICODE | Unicode character | 2 |
'h' | signed short | int | 2 |
'H' | unsigned short | int | 2 |
'i' | signed int | int | 2 |
'I' | unsigned int | int | 2 |
'l' | signed long | int | 4 |
'L' | unsigned long | int | 4 |
'f' | float | float | 4 |
'd' | double | float | 8 |
The actual representation of values is determined by the machine architecture(strictly speaking, by the C implementation). The actual size can be accessedthrough theitemsize attribute.
The module defines the following type:
Return a new array whose items are restricted bytypecode, and initializedfrom the optionalinitializer value, which must be a list, objectsupporting the buffer interface, or iterable over elements of theappropriate type.
If given a list or string, the initializer is passed to the new array’sfromlist(),fromstring(), orfromunicode() method (see below)to add initial items to the array. Otherwise, the iterable initializer ispassed to theextend() method.
Array objects support the ordinary sequence operations of indexing, slicing,concatenation, and multiplication. When using slice assignment, the assignedvalue must be an array object with the same type code; in all other cases,TypeError is raised. Array objects also implement the buffer interface,and may be used wherever buffer objects are supported.
The following data items and methods are also supported:
Return a tuple(address,length) giving the current memory address and thelength in elements of the buffer used to hold array’s contents. The size of thememory buffer in bytes can be computed asarray.buffer_info()[1]*array.itemsize. This is occasionally useful when working with low-level (andinherently unsafe) I/O interfaces that require memory addresses, such as certainioctl operations. The returned numbers are valid as long as the arrayexists and no length-changing operations are applied to it.
Note
When using array objects from code written in C or C++ (the only way toeffectively make use of this information), it makes more sense to use the bufferinterface supported by array objects. This method is maintained for backwardcompatibility and should be avoided in new code. The buffer interface isdocumented inBuffer Objects.
When an array object is printed or converted to a string, it is represented asarray(typecode,initializer). Theinitializer is omitted if the array isempty, otherwise it is a string if thetypecode is'u', otherwise it is alist of numbers. The string is guaranteed to be able to be converted back to anarray with the same type and value usingeval(), so long as thearray() function has been imported usingfromarrayimportarray.Examples:
array('l')array('u','hello\u2641')array('l',[1,2,3,4,5])array('d',[1.0,2.0,3.14])
See also
bisect — Array bisection algorithm
Enter search terms or a module, class or function name.