| [SOLVED] how do you put the program to find the intersection point of two line in... ...python programming? Write a python program to accept inputs from the user which are two lines in the form:
y=(m1)x+b1
y=(m2)x+b2
The user inputs the numbers m1,b1,m2,b2
then the program calculates the intersection of twolines and print the intersection coordinate. |