eenum.py 164 Bytes
Newer Older
jiaqiying committed
1 2 3 4 5 6 7 8 9
# -*- coding: utf-8 -*-
__author__ = 'jiaqiying'
__data__ = "2021-05-06 03:01"
from enum import Enum

class CaseGrade(Enum):
    LOW = 0
    MIDDLE = 1
    HIGH = 2