Open In App

Python | sympy.Interval().inf attribute

Improve
Improve
Like Article
Like
Save
Share
Report

With the help of sympy.Interval().inf attribute, we can get the infimum value of the interval by using sympy.Interval().inf attribute.

Syntax : sympy.Interval().inf

Return : Return the infimum value of the interval.

Example #1 :
In this example we can see that by using sympy.Interval().inf attribute, we are able to get the infimum values of the interval.




# import sympy, Interval
from sympy import Interval
  
# Using sympy.Interval().inf attribute
gfg = Interval(5, 10).inf
  
print(gfg)


Output :

5

Example #2 :




# import sympy, Interval
from sympy import Interval
  
# Using sympy.Interval().inf method
gfg = Interval(-3, 1).inf
  
print(gfg)


Output :

-3


Last Updated : 17 Sep, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads