what will you see on the next line?\n>>> round(9.6)

what will you see on the next line?\n>>> round(9.6)

what will you see on the next line?\n>>> round(9.6)

Answer

Explanation:

Step1: Recall rounding - rule

The round() function in Python rounds a number. If the decimal part is 0.5 or greater, it rounds up; if less than 0.5, it rounds down.

Step2: Apply to 9.6

Since 0.6 > 0.5, 9.6 is rounded up.

Answer:

10