What is the correct syntax of creating an instance method?
:
def self.get_next_card(self): # method body goes here
def self.get_next_card(): # method body goes here
def get_next_card(): # method body goes here
def get_next_card(self): # method body goes here