python – 如何舍入复数?
发布时间:2020-12-20 11:37:41  所属栏目:Python  来源:网络整理 
            导读:如何将复数(例如1.9999999999999998-2j)舍入为2-2j? 当我尝试使用时 print(round(x,2)) 这显示了 Traceback (most recent call last): File "C:Python34FFT.py",line 22,in module print(round(x,2))TypeError: type complex doesn't define __round__ me
                
                
                
            | 
                         
 如何将复数(例如1.9999999999999998-2j)舍入为2-2j? 
  
  
当我尝试使用时 print(round(x,2)) 这显示了 Traceback (most recent call last):
  File "C:Python34FFT.py",line 22,in <module>
    print(round(x,2))
TypeError: type complex doesn't define __round__ method
解决方法
 分别将实部和虚部分开并组合起来: 
  
  
  
        >>> num = 1.9999999999999998-2j >>> round(num.real,2) + round(num.imag,2) * 1j (2-2j) (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!  | 
                  
