class Cube(object):
def __init__(self, width=3, colors=['black','white','red','yellow','blue','green'], sides=['top','bottom','front','back','left','right']):
self.width = width
self.colors = colors
self.sides = sides
self.reset()
self.borderDict = {self.cubeDict['top'][1]:self.cubeDict['back ...