Thursday, September 4, 2025
HomeLanguagesPython | sympy.Interval().contains() method

Python | sympy.Interval().contains() method

With the help of method, we can check whether a value is present in the interval or not by using sympy.Interval().contains() method.

Syntax : sympy.Interval(x, y).contains(value)

Return : Return the boolean value True or False.

Example #1 :
In this example we can see that by using sympy.Interval().contains() method, we are able to get the boolean values if value is present in the interval or not.




# import sympy, Interval
from sympy import Interval
  
# Using sympy.Interval().contains() method
gfg = Interval(5, 10).contains(7)
  
print(gfg)


Output :

True

Example #2 :




# import sympy, Interval
from sympy import Interval
  
# Using sympy.Interval().contains() method
gfg = Interval(0, 1).contains(1.5)
  
print(gfg)


Output :

False

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

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6629 POSTS0 COMMENTS
Nicole Veronica
11799 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11858 POSTS0 COMMENTS
Shaida Kate Naidoo
6749 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6698 POSTS0 COMMENTS
Umr Jansen
6716 POSTS0 COMMENTS