Question: In Python, which of these lines of code calculates the distance between two known points (x1,y1) and (x2,y2)? A) d = sqrt((x2-x1)**2 + (y2-y1)**2) B)
In Python, which of these lines of code calculates the distance between two known points (x1,y1) and (x2,y2)?
| A) | d = sqrt((x2-x1)**2 + (y2-y1)**2) |
| B) | d = ((x2-x1)**2 + (y2-y1)**2)**0.5 |
| C) | d = ((x2-x1)^2 + (y2-y1)^2)^0.5 |
| D) | dist([x1,y1],[x2,y2]) |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
