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')
>>>

posted @ 2019-07-20 08:54  anobscureretreat  阅读(531)  评论(0编辑  收藏  举报