Advertisement
joshuaboshi

Untitled

Aug 9th, 2011
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. >>> class X:
  2. ...     def xxx(self):
  3. ...             print("hello world from: " + name)
  4. ...
  5. >>> class Y:
  6. ...     yyy = X.xxx;
  7. ...
  8. >>> name = "josh"
  9. >>> name
  10. 'josh'
  11. >>> z = Y();
  12. >>> z.yyy();
  13. hello world from: josh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement