Skip to content

Instantly share code, notes, and snippets.

@delonnewman
Created January 12, 2012 06:38
Show Gist options
  • Save delonnewman/1599083 to your computer and use it in GitHub Desktop.
Save delonnewman/1599083 to your computer and use it in GitHub Desktop.
class Point:
def __init__(self, x, y):
self.x = x
self.y = y
Point(1, 2)
Point(3, 4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment