The int function in Python is used to convert a specified value into an integer. It can take a number or a string representation of a number as an argument and return its integer equivalent. Here are some examples:
# Converting a float to an integer
float_value = 3.14
int_value = int(float_value) # Result: 3
# Converting a string to an integer
string_value = "42"
int_value = int(string_value) # Result: 42
# Converting a string with a base (e.g., binary)
binary_string = "1010"
int_value = int(binary_string, 2) # Result: 10
If the value cannot be converted to an integer, a ValueError will be raised.
