Is there a simple way to convert plain text into a segmented array of chunks in python? Each chunk should be for example 16 Bytes. If the last part of the plain text is smaller than 16 Bytes it should can be filled in a smaller chunk.
How to convert plain text in segmented chunks (Bytes) in python?
553 Views Asked by Pm740 At
2
If you would like to achieve the same without external library then you could use bytes or bytesarray.