Python 官方文档:入门教程 => 点击学习
unicode 是 编码规范 ===》 Http协议GBK UTF-8 是 字符集 编码方法 ===》 Apache Nginxpython 3.Xbytes 和 str 的区别在于bytes是byte的
unicode 是 编码规范 ===》 Http协议
GBK UTF-8 是 字符集 编码方法 ===》 Apache Nginx
python 3.X
bytes 和 str 的区别在于bytes是byte的序列,而str是Unicode的序列
http://www.asciitable.com/
b'6'.hex() ==> 16进制
‘36’
int(b'6'.hex(), 16) ==> 10 进制
54
b1 = b'1234'
b2 = bytearray(b1)
b2
Out[27]: bytearray(b'1234')
b2[0] = int(b'6'.hex(), 16)
b2
Out[29]: bytearray(b'6234')
bytes(b2)
Out[31]: b'6234'
b1 = bytes(b2)
b1
Out[33]: b'6234'
--结束END--
本文标题: 编码和Python的bytearray
本文链接: https://lsjlt.com/news/190018.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0