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

Popular posts from this blog

delphi - How to convert bitmaps to video? -

jasper reports - Fixed header in Excel using JasperReports -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -