Home > Article > Backend Development > Detailed introduction to Python’s built-in hex function
English documentation:
hex(x)
Convert an integer number to a lowercase hexadecimal string prefixed with “0x”, for example
If x is not a Python int object, it has to define an index() method that returns an integer.
Instructions:
1. FunctionThe function converts the decimal integer into hexadecimal System integer.
>>> hex(15) '0xf' >>> hex(16) '0x10'
2. If the parameter x is not an integer, it must define an index function that returns an integer.
# 未定义__index__函数 >>> class Student: def __init__(self,name,age): self.name = name self.age = age >>> >>> s = Student('Kim',10) >>> hex(s) Traceback (most recent call last): File "<pyshell#17>", line 1, in <module> hex(s) TypeError: 'Student' object cannot be interpreted as an integer # 定义__index__函数,但是返回字符串 >>> class Student: def __init__(self,name,age): self.name = name self.age = age def __index__(self): return self.name >>> s = Student('Kim',10) >>> hex(s) Traceback (most recent call last): File "<pyshell#23>", line 1, in <module> hex(s) TypeError: __index__ returned non-int (type str) # 定义__index__函数,并返回整数 >>> class Student: def __init__(self,name,age): self.name = name self.age = age def __index__(self): return self.age >>> s = Student('Kim',10) >>> hex(s) '0xa'
The above is the detailed content of Detailed introduction to Python’s built-in hex function. For more information, please follow other related articles on the PHP Chinese website!