bytearray 字符串转为字节
>>> str="hello world"
>>> x=bytearray(str)
>>> x
bytearray(b'hello world')
>>> x.decode()
u'hello world'
>>>bytearray()
bytearray(b'')
>>> bytearray([1,2,3])
bytearray(b'\x01\x02\x03')
>>> bytearray('runoob', 'utf-8')
bytearray(b'runoob')
>>>