标签: python hex uint64
我想知道如何将64位无符号整数转换为十六进制吗?
我的值为'65536L',而我的期望值为'0x0000000000010000'。
非常感谢
答案 0 :(得分:3)
使用字符串格式设置:
"{:#016x}".format(65536)