Add whitespace to exercise code. scipy2010
authorChristopher Burns <chris.d.burns@gmail.com>
Sun, 20 Jun 2010 22:59:53 -0700
branchscipy2010
changeset 416 3ec547912b3c
parent 415 331aaca9d779
child 418 94955d4900d0
Add whitespace to exercise code.
day1/exercise/four_plot.py
--- a/day1/exercise/four_plot.py	Sun Jun 20 22:55:05 2010 -0700
+++ b/day1/exercise/four_plot.py	Sun Jun 20 22:59:53 2010 -0700
@@ -1,4 +1,4 @@
-x=linspace(-5*pi, 5*pi, 500)
+x = linspace(-5*pi, 5*pi, 500)
 plot(x, x, 'b')
 plot(x, -x, 'b')
 plot(x, sin(x), 'g', linewidth=2)