Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Super considered new. solution in Clear category for Capital City by veky
class Capital:
def __new__(cls, name):
if not hasattr(cls, 'name'): cls.name = lambda self: name
return super().__new__(cls)
June 11, 2018
Comments: