terminology - Are "class functions" referred to as "functions" or "methods" in Python -


see code below

class helloworld:     def print(self):         print "hello world" 

is helloworld.print(self) called method or function in python?

they referred class methods or instance methods.


Comments