Skip to content

Instantly share code, notes, and snippets.

@Widdershin
Created August 26, 2015 09:29
Show Gist options
  • Save Widdershin/12c36403e025cc0dfbea to your computer and use it in GitHub Desktop.
Save Widdershin/12c36403e025cc0dfbea to your computer and use it in GitHub Desktop.
class Worm:
def __init__(self, pName):
self.name = pName
class Apple:
def __init__(self):
self.myWorm = None
self.myWorm = self.makeWorm()
print self.myWorm.name # works
def makeWorm(self):
return Worm("Bill")
apple = Apple()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment