Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
cycle and next solution in Clear category for Multicolored Lamp by rafal.pawlowski
from itertools import cycle
class Lamp:
def __init__(self):
self.turns = cycle(('Green', 'Red', 'Blue', 'Yellow'))
def light(self):
return next(self.turns)
March 11, 2019
Comments: