Calling O-word Python subroutines Arguments: self the interpreter instance *args the list of actual positional parameters. Since the number of actual parameters may vary, it is best to use this style of declaration: # this would be defined in the oword module def mysub(self, *args): print "number of parameters passed:", len(args) for a in args: print a