Python| sympy.Interval().inf 属性
借助sympy.Interval().inf
属性,我们可以使用sympy.Interval().inf
属性获得区间的下确界值。
Syntax : sympy.Interval().inf
Return : Return the infimum value of the interval.
示例 #1:
在这个例子中,我们可以看到通过使用sympy.Interval().inf
属性,我们能够得到区间的下确界值。
# import sympy, Interval
from sympy import Interval
# Using sympy.Interval().inf attribute
gfg = Interval(5, 10).inf
print(gfg)
输出 :
示例 #2:
# import sympy, Interval
from sympy import Interval
# Using sympy.Interval().inf method
gfg = Interval(-3, 1).inf
print(gfg)
输出 :
-3