home


Array Module
index

This module defines an object type which can efficiently represent an array of basic values: characters, integers, floating point numbers.
    Type code C Type Python Type Minimum size in bytes 
    'c' char character 1 
    '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 long 2 
    'l' signed long int 4 
    'L' unsigned long long 4 
    'f' float float 4 
    'd' double float 8 

index