“structure python” Réponses codées

pack de struct python


import struct
var = struct.pack('hhl', 5, 10, 15)
print(var)
print(struct.unpack('hhl', var))
PuffinDev

structure python

This module performs conversions between Python values and C structs represented as Python bytes objects. This can be used in handling binary data stored in files or from network connections, among other sources.

For more info, visit:

https://docs.python.org/3/library/struct.html
Suraj Kr Thapa

Réponses similaires à “structure python”

Questions similaires à “structure python”

Plus de réponses similaires à “structure python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code