📚 The CoCalc Library - books, templates and other resources
@interact def color_experimenter(expression=input_box('x^2', 'Expression', str), color=Color('red')): if expression: try: plot(SR(expression), rgbcolor=color).show() except TypeError: print "There's a problem with your expression."