Skip to content

Instantly share code, notes, and snippets.

@zaccone
Created July 30, 2014 11:59
Show Gist options
  • Select an option

  • Save zaccone/01ea6b74990a8e4731fd to your computer and use it in GitHub Desktop.

Select an option

Save zaccone/01ea6b74990a8e4731fd to your computer and use it in GitHub Desktop.
class A(object):
def __init__(self):
self.zmienna = 'konstruktor'
def run(self):
self._run = 'run'
def attrs(self):
setattr(self, '_attrs', 'wartość')
a = A()
a.run()
a.attrs()
print a._run
print a._attrs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment