标签: python
在python3中
我有a = '0e' a的类型是str。 我希望a的类型为十六进制
a = '0e'
a
str
我该怎么做?
hex('0e')给出错误 '0e'.encode提供'3065',也不是我想要的。
hex('0e')
'0e'.encode
'3065'
我想要b = 0e 其中b是十六进制类型
b = 0e
b