Browse Source

Struct

pull/27/head
Jure Šorn 6 years ago
parent
commit
83a6ee2b38
1 changed files with 3 additions and 3 deletions
  1. 6
      README.md

6
README.md

@ -1269,9 +1269,9 @@ Struct
```python ```python
from struct import pack, unpack, iter_unpack, calcsize from struct import pack, unpack, iter_unpack, calcsize
<bytes> = pack('<format>', <value_1> [, <value_2>, ...]) <bytes> = pack('<format>', <value_1> [, <value_2>, ...])
<tuple> = unpack('<format>', <bytes>) <tuple> = unpack('<format>', <bytes>)
<iter> = iter_unpack('<format>', <bytes>) <tuples> = iter_unpack('<format>', <bytes>)
``` ```
### Example ### Example

|||||||
100:0
Loading…
Cancel
Save