我正在尝试使用str.encode()但我得到了
str.encode()
>>> "hello".encode(hex) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: must be string, not builtin_function_or_method
我尝试了很多变体,它们似乎都可以在Python 2.5.2中工作,那么我需要做些什么才能使它们在Python 3.1中工作?
该hex编解码器已被卡住在3.x中 binascii改为使用:
hex
binascii
>>> binascii.hexlify(b'hello') b'68656c6c6f'