Answers for "how to convert a decimal number into a fraction in python"

3

how to cnovert a decimal to fraction python

>>> from fractions import Fraction
>>> Fraction(0.25)
Fraction(1, 4)
Posted by: Guest on April-30-2021

Code answers related to "how to convert a decimal number into a fraction in python"

Python Answers by Framework

Browse Popular Code Answers by Language