It's time to make the final (and longest) class that runs the game. Create a class called game
. Inside that class create a method called play
. Inside that method create a variable called game_number
and set it to zero.
class Game:
def play(self):
game_number = 0