7 lines
81 B
Python
7 lines
81 B
Python
from enum import Enum
|
|
|
|
|
|
class TrafficLightColor(Enum):
|
|
GREEN = 0
|
|
RED = 1
|