学习笔记《python语言程序设计》 错误提示not supported between instances of ‘complex‘ and ‘int‘

", line 13, in 
    if disDigit <= r1 and r2 <= r1:
TypeError: '<=' not supported between instances of 'complex' and 'int'

当我今天看到这个提示的时候脑子里一片混乱。
现在分析一下这个问题的由来。
首先请忽略我下方这个计算圆与圆之间距离的程序


x1, y1, r1 = eval(
    input("Enter circle1's center x-,y-coordinates, and radius: "))
x2, y2, r2 = eval

你可能感兴趣的:(python,学习,算法)