2016-08-06 17:13:48 -04:00
|
|
|
:mod:`array` -- arrays of numeric data
|
2021-04-23 15:26:42 -04:00
|
|
|
=======================================
|
2016-08-06 17:13:48 -04:00
|
|
|
|
|
|
|
.. module:: array
|
|
|
|
:synopsis: efficient arrays of numeric data
|
|
|
|
|
2018-02-20 20:34:59 -05:00
|
|
|
|see_cpython_module| :mod:`cpython:array`.
|
2016-08-06 17:13:48 -04:00
|
|
|
|
|
|
|
Supported format codes: ``b``, ``B``, ``h``, ``H``, ``i``, ``I``, ``l``,
|
|
|
|
``L``, ``q``, ``Q``, ``f``, ``d`` (the latter 2 depending on the
|
|
|
|
floating-point support).
|
|
|
|
|
|
|
|
Classes
|
|
|
|
-------
|
|
|
|
|
2021-04-23 15:26:42 -04:00
|
|
|
.. class:: array(typecode, [iterable])
|
2016-08-06 17:13:48 -04:00
|
|
|
|
|
|
|
Create array with elements of given type. Initial contents of the
|
2018-07-23 21:34:25 -04:00
|
|
|
array are given by an `iterable`. If it is not provided, an empty
|
2016-08-06 17:13:48 -04:00
|
|
|
array is created.
|
|
|
|
|
|
|
|
.. method:: append(val)
|
|
|
|
|
2018-07-23 21:34:25 -04:00
|
|
|
Append new element ``val`` to the end of array, growing it.
|
2016-08-06 17:13:48 -04:00
|
|
|
|
|
|
|
.. method:: extend(iterable)
|
|
|
|
|
2018-07-23 21:34:25 -04:00
|
|
|
Append new elements as contained in `iterable` to the end of
|
2016-08-06 17:13:48 -04:00
|
|
|
array, growing it.
|