With the help of
Python3 1=1
Output :
Python3 1=1
sympy.Rational() method, we can find the rational form of any float value that is passed as parameter in sympy.Rational() method.
Syntax : sympy.Rational(val)
Return : Return Rational form of float value.
Example #1 :
In this example we can see that by using sympy.Rational() method, we are able to find the rational form of any float value that is passed as parameters.
# import sympy
from sympy import *
# Using sympy.Rational() method
gfg = Rational(0.2)
print(gfg)
1/5Example #2 :
# import sympy
from sympy import *
# Using sympy.Rational() method
gfg = Rational(0.12)
print(gfg)
Output :
12/100