Skip to content

Latest commit

 

History

History
executable file
·
18 lines (15 loc) · 831 Bytes

File metadata and controls

executable file
·
18 lines (15 loc) · 831 Bytes
+ Typecode table in C and Python data types
Typecode C Type Python Type Min. Size in Bytes
'b' signed char int 1
'B' unsigned char Unicode character 2
'h' signed short int 2
'H' unsigned short int 2
'i' signed int int 2
'I' unsigned int int 2
'l' signed long int 4
'L' unsigned long int 4
'f' float float 4
'd' double float 8