Computer Science, asked by yadavaashi097, 2 months ago

find the output of (i) math.round(4.5001)​

Answers

Answered by allysia
0

Answer:

ERROR

Explanation:

Math module (whose method you're using) doesn't has any round attribute.

Math uses either floor or ceil to round up the numbers.

Instead it has an independent round() build in function which you can use.

___________________

[In]: round(4.5001)

5

_____________________

Attachments:
Similar questions