There are several built-in functions to perform conversion from one data type to another. These functions return a new object representing the converted value. "int(x)" Converts x to an integer. "float(x)" Converts x to a floating-point number. "str(x)" Converts object x to a string representation.

Convert "float_number" to integer.