Problem
Make some modifications to Joe the Box.
• Add a method to Box named set Color that takes a color as input, then makes the input color the new color for the box. (Maybe set Default Color should call set Color?)
• Add a method to Box named set Size that takes a number as input, then makes the input number the new size for the box.
• Add a method to Box named set Position that takes a list or tuple as a parameter, then makes that input the new position for the box.
• Change in it so that it uses set Size and set Position rather than simply setting the instance variables.