Skip to content

Python for Hacking

Quintin edited this page Sep 7, 2022 · 3 revisions

Turning a number into a hexadecimal string with hex:

In [1]: hex(11)
Out[1]: '0xb'
Clone this wiki locally