blob: eb762516454a811b031f702f72f32c12356c7660 [file] [log] [blame]
Guido van Rossum470be141995-03-17 16:07:09 +00001\section{Built-in Module \sectcode{array}}
Guido van Rossume47da0a1997-07-17 16:34:52 +00002\label{module-array}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00003\bimodindex{array}
4\index{arrays}
5
6This module defines a new object type which can efficiently represent
7an array of basic values: characters, integers, floating point
8numbers. Arrays are sequence types and behave very much like lists,
9except that the type of objects stored in them is constrained. The
10type is specified at object creation time by using a \dfn{type code},
11which is a single character. The following type codes are defined:
12
13\begin{tableiii}{|c|c|c|}{code}{Typecode}{Type}{Minimal size in bytes}
14\lineiii{'c'}{character}{1}
15\lineiii{'b'}{signed integer}{1}
Guido van Rossumb0b81811997-01-03 19:20:52 +000016\lineiii{'B'}{unsigned integer}{1}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000017\lineiii{'h'}{signed integer}{2}
Guido van Rossumb0b81811997-01-03 19:20:52 +000018\lineiii{'H'}{unsigned integer}{2}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000019\lineiii{'i'}{signed integer}{2}
Guido van Rossumb0b81811997-01-03 19:20:52 +000020\lineiii{'I'}{unsigned integer}{2}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000021\lineiii{'l'}{signed integer}{4}
Guido van Rossumb0b81811997-01-03 19:20:52 +000022\lineiii{'L'}{unsigned integer}{4}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000023\lineiii{'f'}{floating point}{4}
24\lineiii{'d'}{floating point}{8}
25\end{tableiii}
26
27The actual representation of values is determined by the machine
Guido van Rossum16d6e711994-08-08 12:30:22 +000028architecture (strictly speaking, by the C implementation). The actual
Guido van Rossumb0b81811997-01-03 19:20:52 +000029size can be accessed through the \var{itemsize} attribute. The values
30stored for \code{'L'} and \code{'I'} items will be represented as
31Python long integers when retrieved, because Python's plain integer
32type can't represent the full range of C's unsigned (long) integers.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000033
Guido van Rossumecde7811995-03-28 13:35:14 +000034See also built-in module \code{struct}.
35\bimodindex{struct}
36
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000037The module defines the following function:
38
39\renewcommand{\indexsubitem}{(in module array)}
40
Guido van Rossum16d6e711994-08-08 12:30:22 +000041\begin{funcdesc}{array}{typecode\optional{\, initializer}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000042Return a new array whose items are restricted by \var{typecode}, and
43initialized from the optional \var{initializer} value, which must be a
44list or a string. The list or string is passed to the new array's
45\code{fromlist()} or \code{fromstring()} method (see below) to add
46initial items to the array.
47\end{funcdesc}
48
49Array objects support the following data items and methods:
50
51\begin{datadesc}{typecode}
52The typecode character used to create the array.
53\end{datadesc}
54
55\begin{datadesc}{itemsize}
56The length in bytes of one array item in the internal representation.
57\end{datadesc}
58
59\begin{funcdesc}{append}{x}
60Append a new item with value \var{x} to the end of the array.
61\end{funcdesc}
62
63\begin{funcdesc}{byteswap}{x}
64``Byteswap'' all items of the array. This is only supported for
Guido van Rossum16d6e711994-08-08 12:30:22 +000065integer values. It is useful when reading data from a file written
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000066on a machine with a different byte order.
67\end{funcdesc}
68
69\begin{funcdesc}{fromfile}{f\, n}
70Read \var{n} items (as machine values) from the file object \var{f}
71and append them to the end of the array. If less than \var{n} items
72are available, \code{EOFError} is raised, but the items that were
Guido van Rossum470be141995-03-17 16:07:09 +000073available are still inserted into the array. \var{f} must be a real
74built-in file object; something else with a \code{read()} method won't
75do.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000076\end{funcdesc}
77
78\begin{funcdesc}{fromlist}{list}
Guido van Rossum6c4f0031995-03-07 10:14:09 +000079Append items from the list. This is equivalent to
80\code{for x in \var{list}:\ a.append(x)}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000081except that if there is a type error, the array is unchanged.
82\end{funcdesc}
83
84\begin{funcdesc}{fromstring}{s}
85Appends items from the string, interpreting the string as an
86array of machine values (i.e. as if it had been read from a
87file using the \code{fromfile()} method).
88\end{funcdesc}
89
90\begin{funcdesc}{insert}{i\, x}
91Insert a new item with value \var{x} in the array before position
92\var{i}.
93\end{funcdesc}
94
95\begin{funcdesc}{tofile}{f}
96Write all items (as machine values) to the file object \var{f}.
97\end{funcdesc}
98
99\begin{funcdesc}{tolist}{}
100Convert the array to an ordinary list with the same items.
101\end{funcdesc}
102
103\begin{funcdesc}{tostring}{}
104Convert the array to an array of machine values and return the
105string representation (the same sequence of bytes that would
106be written to a file by the \code{tofile()} method.)
107\end{funcdesc}
108
109When an array object is printed or converted to a string, it is
110represented as \code{array(\var{typecode}, \var{initializer})}. The
111\var{initializer} is omitted if the array is empty, otherwise it is a
112string if the \var{typecode} is \code{'c'}, otherwise it is a list of
113numbers. The string is guaranteed to be able to be converted back to
114an array with the same type and value using reverse quotes
115(\code{``}). Examples:
116
117\bcode\begin{verbatim}
118array('l')
119array('c', 'hello world')
120array('l', [1, 2, 3, 4, 5])
121array('d', [1.0, 2.0, 3.14])
122\end{verbatim}\ecode