Creating a byte array returns a mutable sequence of bytes given integers in the range of 0 and 255, inclusively.
Solution for How to create a byte array in Python : You can use bytearray() to create an array of bytes Call bytearray(bytes) with a list of integers as bytes to return a new byte array from the provided numbers.