Wreck-It Ralph

class Ralph(object):
    @staticmethod
    def yell(mantra):
        print mantra.upper()
    @staticmethod
    def wreck(item):
        del item

class Vanellope(object):
    @staticmethod
    def cries():
        return False # SPOILER

games = ['Fix-It Felix', '...', 'Sugar Rush'] # SPOILER

for game in games:
    Ralph.yell("I'm gonna wreck it!")
    for item in game:
        Ralph.wreck(item)
    if Vanellope.cries():
        break
Vote up this code0