Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2015
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. class A(object):
  2.     def do1(self):
  3.         print("foo")
  4.         def do2():
  5.             print("Hello")
  6.         return do2
  7.  
  8.  
  9. Al = A()
  10. Al.do1()()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement