Python| sympy.as_real_imag() 方法
在sympy.as_real_imag()
方法的帮助下,我们可以使用sympy.as_real_imag()
() 方法获得第一个值为实数而另一个值为虚数的元组。
Syntax : sympy.as_real_imag()
Return : Return a tuple having both real and imaginary value.
示例 #1:
在这个例子中,我们可以看到通过使用sympy.as_real_imag()
方法,我们能够得到包含实部和虚部值的元组。
# import sympy
from sympy import *
# Using sympy.as_real_imag() method
gfg = (4 + 5 * I).as_real_imag()
print(gfg)
输出 :
(4, 5)
示例 #2:
# import sympy
from sympy import *
# Using sympy.as_real_imag() method
gfg = (5 + 10 * I -5 * I**2).as_real_imag()
print(gfg)
输出 :
(10, 10)