Home  >  Article  >  Backend Development  >  What does int mean in python

What does int mean in python

藏色散人
藏色散人Original
2019-07-04 10:40:1054142browse

What does int mean in python

Python is a computer programming language. It is an object-oriented dynamic type language that was originally designed for writing automated scripts (shells). With the continuous updates of the version and the addition of new language features, it is increasingly used for the development of independent and large-scale projects.

What does int mean in python?

The int() function in python is used to convert a string or number into an integer.

Syntax

The following is the syntax of the int() method:

class int(x, base=10)

Parameters

x -- String or number.

base -- base number, default decimal.

Return value

Return integer data.

Example

The following shows an example of using the int() method:

>>>int()               # 不传入参数时,得到结果0
0
>>> int(3)
3
>>> int(3.6)
3
>>> int('12',16)        # 如果是带参数base的话,12要以字符串的形式进行输入,12 为 16进制
18
>>> int('0xa',16)  
10  
>>> int('10',8)  
8

Related recommendations: "Python Tutorial"

The above is the detailed content of What does int mean in python. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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