Python

Python, struct에서 사용되는c의 자료형과 python의 자료형비교

hwangyoungjae 2016. 4. 21. 21:02

Format

C Types

Python Types

Size

x

Pad byte

No Values

 

c

Char

String of length 1

1

b

Signed char

Integer

1

B

Unsigned char

Integer

1

?

_Bool

bool

1

h

Short

Integer

2

H

Unsigned Short

Integer

2

i

Int

Integer

4

I(아이)

Unsigned int

Integer

4

l()

Long

Integer

4

L

Unsigned long

Integer

4

q

Long long

Integer

8

Q

Unsinged long long

Integer

8

f

Float

Float

4

d

double

Float

8

s

Char[]

String

 

p

Char[]

String

 

P

Void *

Integer