Python Object-Oriented Programming Like many languages, Python allows you to define classes that encapsulate data and the functions that operate on them. We’ll use them sometimes to make our code cleaner and simpler. It’s probably simplest to explain them by constructing a heavily annotated example. Here we’ll construct a class representing a “counting clicker,” the sort that is used at the door to track how many people have shown up for the “advanced topics in data science” meetup. It maintains a count, can be clicked to increment the count, allows you to read_count, and can be reset back to zero. (In real life one of these rolls over from 9999 to 0000, but we won’t bother with that.) To define a class, you use the class keyword and a PascalCase name: class CountingClicker: """A class can/should have a docstring, just like a function""" A class contains zero or more member functions. By convention, each takes a first parameter, self, that refers to t...