Report Bug
Qus : The result of abs() is equal to math.fabs()?
Qus क्या abs() फंक्शन math.fabs() के बराबर है?

A. Yes
B. No
C. Can't say
D. None of these


Solution
A. Yes



Explanation

Yes, in Python, the abs() function and math.fabs() function will typically produce the same result when applied to a numeric value.




Report Bug