Python| sympy.S() 方法
在sympy.S()
方法的帮助下,我们可以使用sympy.S()
方法创建一个对象的单个实例,其中 S 表示单例类。
Syntax : sympy.S()
Return : Return the single instance of an object.
示例 #1:
在这个例子中,我们可以看到通过使用sympy.S()
方法,我们能够创建任何对象的单个实例。
# import sympy
from sympy import *
# Use sympy.S() method
gfg = Integer(0)
print(gfg == S.Zero)
输出 :
True
示例 #2:
# import sympy
from sympy import *
# Use sympy.S() method
gfg = Rational(1, 2)
print(gfg == S.Half)
输出 :
True