# CSE 142 Python sessions # This file is a client that uses the Point class. from Point import * p1 = Point(3, 7) p1.translate(6, -2) print("p1 is ", p1)