Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

what will you see on the next line? >>> int(19.725)

Question

what will you see on the next line?

>> int(19.725)

Explanation:

Step1: Understand int() function

The int() function in Python truncates the decimal part of a floating - point number and returns the integer part.

Step2: Apply to given number

For the number 19.725, when we use int(19.725), it will return 19.

Answer:

19