In Python, what is the correct syntax for defining a method within a class?
def method():
def method(): self
self def method():
def method(self):

Object-Oriented Programming Exercises are loading ...