I'm teaching a python class on Object Oriented Programming and as I'm brushing up on how to explain Classes, I saw an empty class definition:
class Employee:
pass
the example then goes on to define a name and other attributes for an object of this class:
john = Employee()
john.full_name = "john doe"
interesting!
I'm wondering if there's a way to dynamically define a function for a class like this? something like:
john.greet() = print 'hello world!'
this doesn't work in my python interpreter but is there another way of doing it?