find the output of (i) math.round(4.5001)
Answers
Answered by
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