# 导入复数数学库
import cmath
# 使用绝对容差比较两个复数值的接近程度
print(cmath.isclose(10+5j, 10+5j, abs_tol=0.005))
print(cmath.isclose(10+5j, 10.01