Int () function in Python
The int () function in Python returns an integer object from any number or string. How is the int () function syntax, what parameters does it have and how is it used? Invites you to read the track.
Syntax of int () function in Python
int(value, base)
Parameters of int function ()
The int () function has 2 parameters:
- value: number or string to convert into an integer
- base: number represents the number format. Default value: 10
Value returned from int ()
The int function returns:
- an integer from the transmitted number or string.
- If there are no parameters, return 0
For example, how does the int () function work?
# integer
print("int(123) là:", int(123))
# float
# viết bởi TipsMake.com
print("int(123.23) là:", int(123.23))
# string
print("int('123') là:", int('123'))
Run the program, the result is:
int(123) là: 123
int(123.23) là: 123
int('123') là: 123
Example 2: Where decimal, octal and hexadecimal?
# nhị phân 0b hoặc 0B
print("Chuyển đổi giá trị nhị phân 1010 sang int là:", int('1010', 2))
print("Chuyển đổi giá trị nhị phân 0b1010 sang int là:", int('0b1010', 2))
# bát phân 0o hoặc 0O
# viết bởi TipsMake.com
print("Chuyển đổi giá trị bát phân 12 sang int là:", int('12', 8))
print("Chuyển đổi giá trị bát phân 0o12 sang int là:", int('0o12', 8))
# thập lục phân
print("Chuyển đổi giá trị thập lục phân A sang int là:", int('A', 16))
print("Chuyển đổi giá trị thập lục phân 0xA sang int là:", int('0xA', 16))
Run the program, the result is:
Chuyển đổi giá trị nhị phân 1010 sang int là: 10
Chuyển đổi giá trị nhị phân 0b1010 sang int là: 10
Chuyển đổi giá trị bát phân 12 sang int là: 10
Chuyển đổi giá trị bát phân 0o12 sang int là: 10
Chuyển đổi giá trị thập lục phân A sang int là: 10
Chuyển đổi giá trị thập lục phân 0xA sang int là: 10
Don't forget to explore other important Python functions that TipsMake.com has introduced.
5 ★ | 1 Vote
You should read it
May be interested
- Wool () function in Pythonhow is the syntax of len () function, what parameters do it have and how is it used? invites you to read the track.
- Getattr () function in Pythonthe getattr () function in python returns the value of the property you want to find, if the object does not have this property the function will return the default value provided.
- 11 tips for learning Python for 'newbie'we believe that the first step in learning any programming language is to ensure that you understand how to learn because this is arguably the most important skill related to computer programming.
- The globals () function in Pythonthe globals () function in python returns a dictionary containing the variables defined in the global namespace.
- Python locals () functionthe locals () function in python returns a dictionary containing the variables defined in the local namespace.
- List () function in Pythonlist () creates a list in python. so what is the syntax of list () function, what parameters does it have and how to use it? invites you to read the track.