Detailed introduction to Python's built-in hex function

高洛峰
Release: 2017-03-21 13:28:38
Original
4863 people have browsed it

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'
Copy after login

 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: &#39;Student&#39; 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(&#39;Kim&#39;,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(&#39;Kim&#39;,10)
>>> hex(s)
&#39;0xa&#39;
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!