why does python's array uses 2 bytes for unsigned ints, whereas C expects 4 bytes in general?

107 views Asked by At

I need to store a large number of unsigned integers. Looking at https://docs.python.org/3/library/array.html, I wonder why python's array uses 2 bytes for unsigned ints whereas the C language expects 4 bytes in general?

0

There are 0 answers