class Test: # BAD, do not start function name with uppercase letter def HelloWorld(self): print("hello world") # GOOD, function name starts with lowercase letter def hello_world(self): print("hello world")