Python hex() function is used to generate hex value of an integer argument. It takes an integer argument and returns an integer converted into a hexadecimal string. In case, we want to get a hexadecimal value of a float then use float.hex() function. The signature of the function is given below.
It has the following syntax:
It returns a hexadecimal string.
Let's see some examples of hex() function to understand it's functionality.
A simple example to get the hexadecimal value of integer decimals.
Output:
0x1 0x156
This example demonstrates what happens when a floating-point value is passed to the hex() function in Python.
Output:
TypeError: 'float' object cannot be interpreted as an integer
This example demonstrates how the float.hex() method converts floating-point numbers into their hexadecimal representation.
Output:
0x1.8000000000000p+0 -0x1.dc4cccccccccdp+7
We request you to subscribe our newsletter for upcoming updates.