Int () function in Python
The int () function in Python returns an integer object from any number or string.
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.
Update 25 May 2019
You should read it
- The function id () in Python
- Max () function in Python
- Zip () function in Python
- The function dir () in Python
- The ord () function in Python
- The iter () function in Python
- Exec () function in Python
- The function set () in Python
- The globals () function in Python
- The map () function in Python
- Getattr () function in Python
- Isinstance () function in Python
Maybe you are interested
Close-up of a diver's encounter with anaconda and piranha in the Brazilian river The woman caught a giant tuna weighing 411 kg 11 fastest swimming fish in the world What does the 'super slow' 7680fps movie recording feature on the Mate 30 Pro do? Hitman Sniper famous game is being free on iOS and Android How to create slow motion videos on Android?