Skip to content

Instantly share code, notes, and snippets.

Python OOP Workshop

Chennai, October 29-30 2018
Trainer: Chandrashekar Babu

Why OO programming?

We use OO when you want to manage state, delegate concerns, have a specification interface, etc. It is most useful when multiple people are working on a single project. Reduces complexity for large projects.

You need to design first, more emphasis on design as compared to procedural programming (which is more pragmatic).