Wednesday, July 3, 2024
HomeLanguagesPythonPython | sympy.Interval().intersect() method

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

With the help of sympy.Interval().intersect() method, we can get the intersection of two sets by using sympy.Interval().intersect() method.

Syntax : sympy.Interval(x, y).intersect(Interval(x, y))
Return : Return the intersection of two sets.

Example #1 :
In this example we can see that by using sympy.Interval().intersect() method, we are able to get the intersection of two sets.




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


Output :

[7, 8, 9, 10]

Example #2 :




# import sympy, Interval
from sympy import Interval
  
# Using sympy.Interval().intersect() method
gfg = Interval(0.5, 0.9).intersect(Interval(0.7, 1.2))
  
print(gfg)


Output :

[0.7, 0.8, 0.9]

Ted Musemwa
As a software developer I’m interested in the intersection of computational thinking and design thinking when solving human problems. As a professional I am guided by the principles of experiential learning; experience, reflect, conceptualise and experiment.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments