forked from tdwojak/Python2018
Zaktualizuj 'labs02/task05.py'
This commit is contained in:
parent
4cf9fb85a8
commit
1afc8fd9fe
@ -9,8 +9,17 @@ trzyelementowe listy liczb zmiennoprzecinkowych.
|
|||||||
np. odległość pomiędzy punktami (0, 0, 0) i (3, 4, 0) jest równa 5.
|
np. odległość pomiędzy punktami (0, 0, 0) i (3, 4, 0) jest równa 5.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import cmath
|
||||||
|
|
||||||
def euclidean_distance(x, y):
|
def euclidean_distance(x, y):
|
||||||
pass
|
odleglosc=0
|
||||||
|
|
||||||
|
for i in range(3):
|
||||||
|
odleglosc= odleglosc + (x[i] - y[i]) ** 2
|
||||||
|
|
||||||
|
odleglosc = cmath.sqrt(odleglosc)
|
||||||
|
#odleglosc=odleglosc ** (1/2)
|
||||||
|
return odleglosc
|
||||||
|
|
||||||
def tests(f):
|
def tests(f):
|
||||||
inputs = [[(2.3, 4.3, -7.5), (2.3, 8.5, -7.5)]]
|
inputs = [[(2.3, 4.3, -7.5), (2.3, 8.5, -7.5)]]
|
||||||
@ -23,4 +32,4 @@ def tests(f):
|
|||||||
return "TESTS PASSED"
|
return "TESTS PASSED"
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
print(tests(euclidean_distance))
|
print(tests(euclidean_distance))
|
Loading…
Reference in New Issue
Block a user