Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
30 lines (20 loc) · 846 Bytes

File metadata and controls

30 lines (20 loc) · 846 Bytes
Copy raw file
Download raw file
Outline
Edit and raw actions

:mod:`array` -- arrays of numeric data

.. module:: array
   :synopsis: efficient arrays of numeric data

See Python array for more information.

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

Create array with elements of given type. Initial contents of the array are given by an iterable. If it is not provided, an empty array is created.

.. method:: append(val)

    Append new element to the end of array, growing it.

.. method:: extend(iterable)

    Append new elements as contained in an iterable to the end of
    array, growing it.
Morty Proxy This is a proxified and sanitized view of the page, visit original site.