This module performs conversions between Python values and C structs represented as Python bytes objects. Format strings are the mechanism used to specify the expected layout when packing and unpacking data. Module struct is available in Python 3.x and not on 2.x, thus these codes will run on Python3 interpreter.
Struct Functions
- struct.pack()
Syntax:
struct.pack(format, v1, v2, ...)
Return a string containing the values v1, v2, … , that are packed according to the given format (Format strings are the mechanism used to specify the expected layout when packing and unpacking data).The values followed by the format must be as per the format only, else struct.error is raised.
python - Sample - python code :
python tutorial - Output :
b'\x01\x00\x02\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00' b'\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00'
Syntax:
struct.unpack(fmt, string)
Return the values v1, v2, … , that are unpacked according to the given format(1st argument). Values returned by this function are returned as tuples of size that is equal to the number of values passed through struct.pack() during packing.
python - Sample - python code :
python tutorial - Output :
b'\x01\x00\x02\x00\x05\x00\x00\x00\xbd\x01\x00\x00\x00\x00\x00\x00' (True, 2, 5, 445) b'\x05\x00\x00\x00\x00\x00\x00\x0033\x13@' (5, 2.299999952316284)
Note: ‘b’ in the Output stands for binary.
- struct.calcsize()
Syntax:
struct.calcsize(fmt) fmt: format
Return the size of the struct (and hence of the string) corresponding to the given format. calcsize() is important function, and is required for function such as struct.pack_into() and struct.unpack_from(), which require offset value and buffer as well.
python - Sample - python code :
python tutorial - Output :
b'\x01\x00\x02\x00\x05\x00\x00\x00\xbd\x01\x00\x00\x00\x00\x00\x00' 16 12
python - Sample - python code :
python tutorial - Output :
b'8\x00\x00\x00\x15\x14\x13\x12' 8 b'\x15\x14\x13\x128' 5
Note: The ordering of format characters may have an impact on size.
- Exception struct.error
Exception struct.error describes what is wrong at passing arguments, when a wrong argument is passed struct.error is raised.
python - Sample - python code :
Note: This is piece of code is not useful, anywhere other than exception handling, and is used to show that ‘error’ upon interpreted shows about the class.
- struct.pack_into()
Syntax:
struct.pack_into(fmt, buffer, offset, v1, v2, ...) fmt: data type format buffer: writable buffer which starts at offset (optional) v1,v2.. : values
Syntax:
struct.unpack_from(fmt, buffer[,offset = 0])fmt: data type format buffer: writable buffer which starts at offset (optional)
Returns a tuple, similar to struct.unpack()
python - Sample - python code :
python tutorial - Output :
16 b'\x02\x00\x02\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00' (2, 2, 3) (2, 2, 3)