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