311.csv #1

Open
s354567 wants to merge 17 commits from s354567/Python2018:master into master
Showing only changes of commit 1afc8fd9fe - Show all commits

View File

@ -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.
"""
import cmath
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):
inputs = [[(2.3, 4.3, -7.5), (2.3, 8.5, -7.5)]]
@ -23,4 +32,4 @@ def tests(f):
return "TESTS PASSED"
if __name__ == "__main__":
print(tests(euclidean_distance))
print(tests(euclidean_distance))