Open In App
Related Articles

Python | sympy.Interval().inf attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

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

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 17 Sep, 2019
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials