How can I represent a byte array (like in Java with byte[]) in Python? I'll need to send it over the wire with gevent.
byte key[] = {0x13, 0x00, 0x00, 0x00, 0x08, 0x00};
|
feedback
|
|
In Python 3, we use the
I find it more convenient to use the
You can also use literals...
| ||||
|
feedback
|
|
Just use a
Indexing get and sets the individual bytes
and if you need it as a
| |||||||||
feedback
|
|
Dietrich's answer is probably just the thing you need for what you describe, sending bytes, but a closer analogue to the code you've provided for example would be using the
| |||||||
feedback
|