intfunction
print("The int() function")
# value = "10"
# base = 2
print(int("10", 2))
# value = "10"
# base = 10
print(int("10", 10))
# value = "10"
# base = 16
print(int("10", 16))
# value = "10"
# base = 8
print(int("10", 8))
INFO
print("The int() function")
# value = "10"
# base = 2
print(int("10", 2))
# value = "10"
# base = 10
print(int("10", 10))
# value = "10"
# base = 16
print(int("10", 16))
# value = "10"
# base = 8
print(int("10", 8))