Skip to Content
Python: Essential Reference, Third Edition
book

Python: Essential Reference, Third Edition

by David Beazley
February 2006
Intermediate to advanced content levelIntermediate to advanced
648 pages
14h 53m
English
Sams
Content preview from Python: Essential Reference, Third Edition

struct

The struct module is used to convert data between Python and binary data structures (represented as Python strings). These data structures are often used when interacting with functions written in C or with binary network protocols.

pack(fmt,
						v1,
						v2, ...)

Packs the values v1, v2, and so on into a string according to the format string in fmt.

unpack(fmt,
						string)

Unpacks the contents of string according to the format string in fmt. Returns a tuple of the unpacked values.

calcsize(fmt)

Calculates the size in bytes of the structure corresponding to a format string, fmt.

The format string is a sequence of characters with the following interpretations:

FormatC TypePython Type
'x'pad byteNo value
'c'charString of length 1
'b'signed charInteger
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Python: Essential Reference

Python: Essential Reference

David M. Beazley

Publisher Resources

ISBN: 0672328623Purchase book