Computer Science

Write following expressions in Python:

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

Python Data Handling

45 Likes

Answer


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

Answered By

26 Likes


Related Questions