Tuesday, June 9, 2026
HomeLanguagesPython | sympy.is_rational method

Python | sympy.is_rational method

With the help of sympy.is_rational method, we can check whether the element is rational or not this method will return the boolean value i.e True or False.

Syntax : sympy.is_rational Return : Return True if rational else False.

Example #1: In this example, we can see that by using sympy.is_rational method, we are able to check the rational value and it will return a boolean value. 

Python3




# import sympy
from sympy import *
  
# Use sympy.is_rational method
gfg = simplify(2 / 5).is_rational
    
print(gfg)


Output :

True

Example #2 : 

Python3




# import sympy
from sympy import *
  
# Use sympy.is_rational method
gfg = simplify(5).is_rational
    
print(gfg)


Output :

True

Example #3 : 

Python3




# import sympy
from sympy import *
    
# Use sympy.is_rational method
gfg = simplify(sqrt(3)).is_rational
      
print(gfg)


Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6896 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7018 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS