Detailed introduction to Python's built-in hex function

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

English documentation:

hex(x)

Convert anintegernumber to a lowercase hexadecimalstringprefixed with “0x”,forexample

Ifx is not aPythonintobject, it has to define an index() method thatreturns an integer.

Instructions:

 1.FunctionThe function converts the decimalintegerinto 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 "", line 1, in  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 "", line 1, in  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'
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
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!