Horje
Python | sympy.Rational() method

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




Reffered: https://www.geeksforgeeks.org


Python

Related
pwd module in Python pwd module in Python
grp module in Python grp module in Python
Python | sympy.as_independent() method Python | sympy.as_independent() method
ToDo webapp using Django ToDo webapp using Django
Python | sympy.symbols() method Python | sympy.symbols() method

Type:
Geek
Category:
Coding
Sub Category:
Tutorial
Uploaded by:
Admin
Views:
8