Open In App

Python | sympy.sets.Ropen() method

With the help of sympy.sets.Ropen() method, we can make a set of values by setting interval values like right open that means a set has right open bracket and left close one by using sympy.sets.Ropen() method.

Syntax : sympy.sets.Ropen(val1, val2)
Return : Return set of values with right open set.



Example #1 :
In this example we can see that by using sympy.sets.Ropen() method, we are able to find the set of values by defining right open brackets.




# import sympy
from sympy.sets import Interval
  
# Use sympy.sets.Ropen() method
gfg = Interval.Ropen(0, 10)
print(gfg)
    
print(gfg.contains(0))

Output :

[0, 10)
True



Example #2 :




# import sympy
from sympy.sets import Interval
  
# Use sympy.sets.Ropen() method
gfg = Interval.Ropen(0, 5)
print(gfg)
    
print(gfg.contains(5))

[0, 5)
False

Article Tags :