直線方程式是3x+4y+5=0,求點p(1,2)到直線的距離
a = 3b = 4c = 5m = 1n = 2d = abs(a*m+b*n+c)/((a*a+b*b)**(1/2))print(d)
3.5