0 votes
in Machine Learning by
How to Reverse a bitstring.

1 Answer

0 votes
by

If you are using python3 :

data = b'\xAD\xDE\xDE\xC0'

my_data = bytearray(data)

my_data.reverse()

Related questions

0 votes
asked May 10, 2023 in Python Flask by john ganales
0 votes
asked Feb 3, 2020 in NGINX by Tate
...