Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Python | sympy.Rational() method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

With the help of 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)

Output :

1/5

Example #2 :




# import sympy
from sympy import *
  
# Using sympy.Rational() method
gfg = Rational(0.12)
  
print(gfg)

Output :

12/100

My Personal Notes arrow_drop_up
Last Updated : 02 Aug, 2019
Like Article
Save Article
Similar Reads
Related Tutorials