>>> from fractions import Fraction | |
>>> a = Fraction(1, 10) | |
>>> b = Fraction(2, 10) | |
>>> float(a + b) | |
0.3 | |
>>> a + b == Fraction(3, 10) | |
True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment