Given the following class definition, which of the following…

Given the following class definition, which of the following is the correct call for the method? class Games: def __init__(self): self.fav_game= ‘Tennis’ def print_game(self, diff_game): print(‘{0} is a better game than {1}.’.format(self.fav_game, diff_game))