How to convert an int to a hex string?

后端 未结 13 738
不知归路
不知归路 2020-11-28 03:27

I want to take an integer (that will be <= 255), to a hex string representation

e.g.: I want to pass in 65 and get out \'\\x41\', or

13条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-28 03:41

    As an alternative representation you could use

    [in] '%s' % hex(15)
    [out]'0xf'
    

提交回复
热议问题