Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
use cycle solution in Clear category for Multicolored Lamp by mplichta
from itertools import cycle
class Lamp:
def __init__(self):
self._state = cycle(['Green', 'Red', 'Blue', 'Yellow'])
def light(self):
return next(self._state)
July 28, 2018