(Choose 1 answer)
A bytes object is immutable. If you want a binary sequence that can be modified, you should use a bytearray.Is it possible to create a bytearray object directly from a bytes object, as shown below:
array_of_bytes = bytearray(b'15\x80a#')
A. Yes
B. No
Exit 47