from enum import Enum
Direction = Enum('Direction', 'n e s w')
-Cutlery = Enum('Cutlery', {'fork': 1, 'knife': 2, 'spoon': 3})
+direction = Direction.n
from dataclasses import make_dataclass
Creature = make_dataclass('Creature', ['location', 'direction'])