📜  Python| sympy.as_real_imag() 方法

📅  最后修改于: 2022-05-13 01:54:20.854000             🧑  作者: Mango

Python| sympy.as_real_imag() 方法

sympy.as_real_imag()方法的帮助下,我们可以使用sympy.as_real_imag() () 方法获得第一个值为实数而另一个值为虚数的元组。

示例 #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)

输出 :

示例 #2:

# import sympy
from sympy import *
  
# Using sympy.as_real_imag() method
gfg = (5 + 10 * I -5 * I**2).as_real_imag()
  
print(gfg)

输出 :