x1, y1 = map(float,input().split())
x2, y2 = map(float,input().split())
modul = ((x2 - x1)**2 + (y2 - y1)**2)**0.5
print(round(modul, 3))
Код можно сократить до трёх строк:
print(round(((x2 - x1)**2 + (y2 - y1)**2)**0.5, 3))
x1, y1 = map(float,input().split())
x2, y2 = map(float,input().split())
modul = ((x2 - x1)**2 + (y2 - y1)**2)**0.5
print(round(modul, 3))
Код можно сократить до трёх строк:
x1, y1 = map(float,input().split())
x2, y2 = map(float,input().split())
print(round(((x2 - x1)**2 + (y2 - y1)**2)**0.5, 3))