On Tue, Nov 18, 2014 at 5:01 PM, Danny Yoo <[email protected]> wrote: > ---------- Forwarded message ---------- > From: niyana morgan <[email protected]> > Date: Tue, Nov 18, 2014 at 4:59 PM > Subject: Re: [Tutor] Fw: Traceback > To: Danny Yoo <[email protected]> > > > Exercise 1: > def distance(x1, y1, x2, y2): > dx = x2 - x1 > dy = y2 - y1 > dsquared = dx**2 + dy**2 > result = math.sqrt(dsquared) > print(result) > return result
That's not exercise 1. Try again. Exercise 1 Write a compare function that returns 1 if x > y, 0 if x == y, and -1 if x < y. I have to get back to work so hopefully others on the mailing list can help you. Please continue to reply to the list. _______________________________________________ Tutor maillist - [email protected] To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor
