Skip to content

Instantly share code, notes, and snippets.

@FerdinaKusumah
Created December 21, 2019 15:29
Show Gist options
  • Save FerdinaKusumah/7569abff9416bd0e78f4faeb8e2b626d to your computer and use it in GitHub Desktop.
Save FerdinaKusumah/7569abff9416bd0e78f4faeb8e2b626d to your computer and use it in GitHub Desktop.
Underscore python
class Example:
def __init__(self):
self.foo = 21
self._bar = 25
>>> t = Example()
>>> t.foo
21
>>> t._bar
25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment