Перечисления

from enum import Enum


class Season(Enum):
    Summer, Fall, Winter, Spring = range(4)


winter = Season.Winter
strValue = str(winter)
# strValue is "Season.Winter"

strName = winter.name
# strName is "Winter"

print(strValue)
print(strName)