Create a snake game
# 1. class that: create a class called "Person" with a method called "greet" that returns "hello" class Person: def greet(self): return "hello" # 2. class that: Create a snake game class Game: def __init__(self): self.board = [ ['.', '.', '.', '.', '.', '.'], ['.', '.', '.', '.', '.', '.'], ['.', '.', '.', '.', '.', '.'], ['.', '.', '.', '.', '.', '.'], ['.', '.', '.', '.', '.', '.'], ['.', '.', '.', '.', '.', '.'], ['.', '.', '.', '.', '.', '.'], ] def set_snake(self, snake_location): pass def set_apple(self, apple_location):