# L-26 MCS 260 Fri 26 Oct 2007 : classpoint class Point: "defines a point in the plane" def __init__(self,a=0,b=0): "constructs a point in the plane" self.x = a self.y = b def __str__(self): "returns string representation of a point" return '( %.4e, %.4e )' % (self.x,self.y)