标签: python
from fractions import Fraction print(Fraction.from_float(0.2)) print(Fraction.from_float(0.25))
与
print(Fraction(0.2)) print(Fraction(0.25))
首先给出3602879701896397/18014398509481984
第二个给出1/4
不是第一个输出1/5吗?发生了什么事?