from __future__ import print_function class Demo(object): def illustrate(self, a): print("See, I worked, and 'a' is not a keyword argument.") d = Demo() d.illustrate(a=5)