Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

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

Question

what will you see on the next line?

>> int(6.5)

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 6.5

When int(6.5) is executed, it will return 6.

Answer:

6