Q. What will be the output of the following code snippet?
Code:from math import * a = 2.19 b = 3.999999 c = -3.30 print(int(a), floor(b), ceil(c), fabs(c))
β
Correct Answer: (A)
2 3 -3 3.3
from math import * a = 2.19 b = 3.999999 c = -3.30 print(int(a), floor(b), ceil(c), fabs(c))
You must be Logged in to update hint/solution