Advertisement
Guest User

Untitled

a guest
May 26th, 2015
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. >>> class foo(object):
  2. ... pass
  3. ...
  4. >>> dir()
  5. ['__builtins__', '__doc__', '__loader__', '__name__', '__package__', '__spec__', 'e', 'foo']
  6. >>> foo.bar = 42
  7. >>> foo.bar
  8. 42
  9. >>> foo.bar = 'your mom'
  10. >>> foo.bar
  11. 'your mom'
  12. >>>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement