‘hex‘ is not a text encoding; use codecs.encode() to handle arbitrary codecs

郭翰翮
2023-12-01

环境:

python 3.9

Visual studio 2019 运行

直接使用 encode('hex')时报错,

'hex' is not a text encoding; use codecs.encode() to handle arbitrary codecs

解决方法:

1.先转换成utf-8,再转16进制

encode("utf-8").hex() 

参考网址:

Python 3.1.1 string to hex - Stack Overflow

 类似资料:

相关阅读

相关文章

相关问答