Skip to content

Instantly share code, notes, and snippets.

@masak

masak/demo.txt Secret

Created June 23, 2015 09:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save masak/070aa6219ed925728b92 to your computer and use it in GitHub Desktop.
Save masak/070aa6219ed925728b92 to your computer and use it in GitHub Desktop.
Same thing in Python 3
$ python3
Python 3.4.0 (default, Apr 11 2014, 13:05:11)
[GCC 4.8.2] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> class C:
... def foo(self):
... self.bar = 42
...
>>> c = C()
>>> c.foo()
>>> c.bar
42
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment