|
|
@ -884,9 +884,9 @@ Bytes |
|
|
|
|
|
|
|
### Decode |
|
|
|
```python |
|
|
|
<str> = <bytes>.decode('utf-8') |
|
|
|
<int> = int.from_bytes(<bytes>, byteorder='big|little', signed=False) |
|
|
|
<hex> = <bytes>.hex() |
|
|
|
<str> = <bytes>.decode('utf-8') |
|
|
|
<int> = int.from_bytes(<bytes>, byteorder='big|little', signed=False) |
|
|
|
<hex> = <bytes>.hex() |
|
|
|
``` |
|
|
|
|
|
|
|
### Read Bytes from File |
|
|
|