>>> str="hello world">>> x=bytearray(str)>>> xbytearray(b'hello world')>>> x.decode()u'hello world'
>>>bytearray()bytearray(b'')>>> bytearray([1,2,3])bytearray(b'x01x02x03')>>> bytearray('runoob', 'utf-8')bytearray(b'runoob')>>>