# Homework 27, problem 1: Point class with move. # # Build a Point class with: # Point(x, y) # distance(other) # move(dx, dy) # # Create two points, move one, then print the distance. # # Run with: python exercises/27/homework/01-point.py # Your code goes here: