32 lines
515 B
Python
32 lines
515 B
Python
# todo: Перепишите игру "Поле чудес" на классах.
|
|
import random
|
|
import uuid
|
|
import datetime
|
|
from lesson_5.code.db import DICT_DEFENITION_WORD
|
|
|
|
|
|
class Yakubovich:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def print_menu(self):
|
|
pass
|
|
|
|
def start_game(self):
|
|
pass
|
|
|
|
def save_game(self):
|
|
pass
|
|
|
|
def end_game(self):
|
|
pass
|
|
|
|
def load_game(self):
|
|
pass
|
|
|
|
def _generate_key(self) -> str:
|
|
pass
|
|
|
|
|
|
game = Yakubovich()
|
|
game.print_menu() |