What is byte size of diffetrent data type in python?
Answers
Answered by
0
Thank you for asking the question !!!
table below shows the data type size in bytes of python data types
type code, Python type and minimum size in bytes:
b int 1
B int 1
u unicode char 2
h int 2
H int 2
i int 2
I int 2
l int 4
L int 4
q int 8
Q int 8
f float 4
d float 8
there are so many other types.
table below shows the data type size in bytes of python data types
type code, Python type and minimum size in bytes:
b int 1
B int 1
u unicode char 2
h int 2
H int 2
i int 2
I int 2
l int 4
L int 4
q int 8
Q int 8
f float 4
d float 8
there are so many other types.
Similar questions