环境:
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