Skip to content

Instantly share code, notes, and snippets.

@glassus
Last active July 30, 2020 12:20
Show Gist options
  • Save glassus/4edb3ac7234a11686c166a6ba2d09588 to your computer and use it in GitHub Desktop.
Save glassus/4edb3ac7234a11686c166a6ba2d09588 to your computer and use it in GitHub Desktop.
class Point :
def __init__(self,x,y):
self.x = x
self.y = y
A = Point(3,8)
print(A.x, A.y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment