Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Old and new-style class (See related posts)

Old style class
class K:
  ...

New style class
class K(object):
  ...

Some features such as properties are only avaiable in new-style class.
Learn more about New-style class

You need to create an account or log in to post comments to this site.


Click here to browse all 4857 code snippets

Related Posts