This script defines two functions. The hypotenuse(a,b)
function returns the hypotenuse length of a right-angled triangle whose right-angle adjacent sides are a and b. The pythagore(a,b,c)
function tests if the integer tuple (a,b,c) is Pythagorean, it returns true if and only if a**2+b**2=c**2
.
from math import * def hypotenuse(a,b): return sqrt(a**2+b**2) def pythagore(a,b,c): a=int(a) b=int(b) c=int(c) return a**2+b**2==c**2