Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Multicolored Lamp by ssk8
from itertools import cycle
class Lamp:
def __init__(self):
self.colour = cycle(("Green", "Red", "Blue", "Yellow"))
def light(self):
return next(self.colour)
July 12, 2018
Comments: