标签: python-2.7 int hex bytearray
我需要从int获取一个bytearray。我试过这个:
bytearray.fromhex(hex(8448))
我从翻译中得到了他的错误:
ValueError: non-hexadecimal number found in fromhex() arg at position 0
从int获取bytearray的正确方法是什么?