“estructura de pitón” Código de respuesta

Python Struct Pack


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

estructura de pitón

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

Respuestas similares a “estructura de pitón”

Preguntas similares a “estructura de pitón”

Más respuestas relacionadas con “estructura de pitón” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código