You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our SimpleMath object should behave like an integer, implement the __abs__ functionality so that we can do more comparisons using the builtin operators.
s1 = SimpleMath(-10)
assert abs(s1) == 10
The text was updated successfully, but these errors were encountered:
Our SimpleMath object should behave like an integer, implement the
__abs__
functionality so that we can do more comparisons using the builtin operators.The text was updated successfully, but these errors were encountered: