Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

question # 4 math formula what will you see on the next line? >>>int(3.…

Question

question # 4
math formula
what will you see on the next line?

>>int(3.9)

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 3.9

When we apply int() to 3.9, it will return 3.

Answer:

3