12.07.2015 Views

Is Python a

Is Python a

Is Python a

SHOW MORE
SHOW LESS
  • No tags were found...

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

class Test1(Privacy):privates = ['age']class Test2(Privacy):privates = ['name', 'pay']def _ _init_ _(self):self._ _dict_ _['name'] = 'Tom'x = Test1( )y = Test2( )x.name = 'Bob'y.name = 'Sue'# > class adder:... def _ _init_ _(self, value=0):... self.data = value # Initialize data... def _ _add_ _(self, other):... self.data += other # Add other in-place...500 | Chapter 24: Class Coding Details

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!