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