浮点数的十六进制值 (Hexadecimal value of a float number)
To get the hexadecimal value of a float number we use – float.hex() method, it accepts a float value and returns its hexadecimal value in string format.
要获取浮点数的十六进制值,我们使用– float.hex()方法 ,该方法接受一个浮点值并以字符串格式返回其十六进制值。
Syntax:
句法:
float.hex(number)
Parameter(s): number – a float value to be converted into hexadecimal.
参数(一个或多个): 数 -一个浮点值被转换成十六进制。
Return value: str – it returns hexadecimal value of number in string format.
返回值:STR -返回字符串格式数量的十六进制值。
Example:
例:
Input:
num = 10.23
print("hex value of ", num, " is = ", float.hex(num))
Output:
hex value of 10.23 is = 0x1.475c28f5c28f6p+3
Python code to get hexadecimal value of given float number
Python代码获取给定浮点数的十六进制值
# python code to demonstrate example
# of float.hex() function
num = 0.0
print("hex value of ", num, " is = ", float.hex(num))
num = 10.23
print("hex value of ", num, " is = ", float.hex(num))
num = -10.23
print("hex value of ", num, " is = ", float.hex(num))
Output
输出量
hex value of 0.0 is = 0x0.0p+0
hex value of 10.23 is = 0x1.475c28f5c28f6p+3
hex value of -10.23 is = -0x1.475c28f5c28f6p+3
Recommended posts
推荐的帖子
Read input as an integer in Python
在Python中将输入读取为整数
Read input as a float in Python
在Python中以浮点形式读取输入
Parse a string to float in Python (float() function)
解析要在Python中浮动的字符串(float()函数)
How do you read from stdin in Python?
您如何从Python的stdin中读取信息?
Asking the user for integer input in Python | Limit the user to input only integer value
要求用户在Python中输入整数| 限制用户仅输入整数值
Asking the user for input until a valid response in Python
要求用户输入直到Python中的有效响应
Input a number in hexadecimal format in Python
在Python中以十六进制格式输入数字
Input a number in octal format in Python
在Python中以八进制格式输入数字
Input a number in binary format in Python
在Python中以二进制格式输入数字
Convert an integer value to the string using str() function in Python
使用Python中的str()函数将整数值转换为字符串
Convert a float value to the string using str() function in Python
使用Python中的str()函数将浮点值转换为字符串
Input and Output Operations with Examples in Python
使用Python中的示例进行输入和输出操作
Taking multiple inputs from the user using split() method in Python
使用Python中的split()方法从用户获取多个输入
Fast input / output for competitive programming in Python
快速输入/输出,可在Python中进行有竞争力的编程
Precision handling in Python
Python中的精确处理
Python print() function with end parameter
带有结束参数的Python print()函数
翻译自: https://www.includehelp.com/python/get-the-hexadecimal-value-of-a-float-number.aspx