Computational Physics With Python - UNIOS

Next, we’ll tell Python to graph yversus x, using red symbols: In [3]: plot(x,y,’rx’) Out[3]: [] In addition to the nearly useless Out[] statement in your terminal window, you will note that a new window opens showing a graph with red ’s. The graph is ugly, so let’s clean it up a bit. ................
................