python 之复数

2023-01-31 02:01:05 python 复数
#_*_ coding:utf-8 _*_

aa=123-12j

print aa.real
#output实数部分 123.0
print aa.imag
#output虚数部分 -12.0

相关文章