>> 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.
Following up. I don't think I've heard back about this. Did you get help from someone else? Has the problem here been resolved? _______________________________________________ Tutor maillist - [email protected] To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor
