Respuesta :

Answer:

False

Explanation:

The int() function is a built-in function found in Python3. This function can be used on floating-point values as well as strings with numerical values, etc. Once used it will convert the floating-point value into an integer whole value. However, it will always round the value down to the nearest whole number. This means that both 3.2 and 3.7 will return 3 when using the int function.

The int() does not perform rounding up/down of a float. It only print the

integer.

The int() function in python converts any specified number into an integer. It  

does not round the decimal up or down.

For example

x = 20.90

y = int(x)

print(y)

Normally the float number of x (20.90) is suppose to be rounded up to 21 but

python int() function only takes the whole number i.e. the integer number

The program above will print an integer of 20. There is no rounding up or

down for python int() function.

learn more: https://brainly.com/question/14702682?referrer=searchResults