Computer Science

Write following expressions in Python:

Write following expressions in Python: √((x2 - x1)² + (y2 - y1)²)

Python Data Handling

41 Likes

Answer


math.sqrt((x2 - x1) ** 2 + (y2 - y1) ** 2)

Answered By

25 Likes


Related Questions