How to convert an integer to hexadecimal, binary and octal in Python.
If we want to convert an integer to a binary number we will use a function called bin().
Then, if we want to convert an integer to a hexadecimal number we will use a function called hex().
Also, if we want to convert an integer to a octal number we will use a function called oct().