About 2,250,000 results
Open links in new tab
  1. struct - C-like structures in Python - Stack Overflow

    Aug 30, 2008 · The following solution to a struct is inspired by the namedtuple implementation and some of the previous answers. However, unlike the namedtuple it is mutable, in it's …

  2. reading struct in python from created struct in c - Stack Overflow

    Jun 22, 2013 · I am opening the file using Python to read the file. One of the things I need to read are a struct that was created in the C function and printed in binary. In my Python code I am at …

  3. python - convert bytes or bytearray to struct - Stack Overflow

    May 16, 2023 · Two ways: one using ctypes and one using struct: For ctypes, I simplified the structure but it has the same layout for 32-bit signed integers and an unsigned byte. It works …

  4. python - Reading a binary file into a struct - Stack Overflow

    The idiomatic way to do this in Python is use the struct module and call struct.unpack() in a loop—either a fixed number of times if you know the number of them in advance, or until end …

  5. struct objects in python - Stack Overflow

    Oct 13, 2016 · In addition, a struct is nothing but a class with public members (i.e., struct{}; and class{public:}; are the exact same thing (in, say, C++)). Shouldn't you consider this and avoid …

  6. binary - Python struct.pack and unpack - Stack Overflow

    Oct 14, 2020 · struct.pack takes non-byte values (e.g. integers, strings, etc.) and converts them to bytes. And conversely, struct.unpack takes bytes and converts them to their 'higher-order' …

  7. Python - How can I get a list of all the fields in my struct?

    Nov 1, 2020 · As I understand it, I don't think you're using Python classes correctly. You can achieve the equivalent of structs with a dictionary, whereas Python class is more intended to …

  8. How to get precise struct size using Python 'struct' module

    Aug 29, 2013 · I wanted to append a dynamic string at the end of the package, so I decided to use the struct size to split the package in two, but then the problems began. The thing is, …

  9. Python - "Struct arrays" - Stack Overflow

    Oct 10, 2016 · 3 For almost all cases, a Python list is analogous to a C array. Python has an array module, but that is a thin wrapper around actual C arrays, so I wouldn't use that unless you …

  10. Packing and Unpacking binary float in python - Stack Overflow

    I am having some trouble with packing and unpacking of binary floats in python when doing a binary file write. Here is what I have done: import struct f = open ('file.bin', 'wb') value = …