Using Strings With Bytes in Python

Bytes is a data structure in Python that can be used when we wish to store a collection of bytes in an ordered manner in a contiguous area of memory. It is also an immutable data type. When working with data, you might find yourself in a situation where you need to convert bytes to … Read more

Using Strings With ByteArray in Python

In this article, let us see how to effectively work with strings while using the Bytearray data structure in Python. A Quick Refresher on Bytearray ByteArray is a data structure in Python that can be used when we wish to store a collection of bytes in an ordered manner in a contiguous area of memory. … Read more