def average(a, b): """Given Parameters a and b, compute and return the arithmetic mean of a and b.""" return (a + b) * 0.5