Advertisement
Guest User

Untitled

a guest
Dec 8th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Home:
  2. location = "집"
  3. pass
  4.  
  5. class Office:
  6. def sample_method(self, home):
  7. return home.location
  8.  
  9. test_home = Home()
  10. test_office = Office()
  11.  
  12. print test_office.sample_method(test_home)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement