pimento[~]$ fixscreenmirror pimento[~]$ update21 No new updates found. Last two updates shown below 85 minutes ago Mon Oct 8 09:02:49 2018 -0400 inclass/w06/cat_face.py inclass/w06/circles.py 4 days ago Thu Oct 4 21:25:02 2018 -0400 labs/05/QUESTIONS-05.txt labs/05/tictactoe.py pimento[~]$ python3 Python 3.6.5 (default, Apr 1 2018, 05:46:30) [GCC 7.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> >>> from graphics import * >>> win = GraphWin("Practice", 800, 600) >>> win.setBackground("navy") >>> p = Point(100,200) >>> p.draw(win) Point(100.0, 200.0) >>> p.setFill("orange") >>> q = Point(500,300) >>> q.setFill("orange") >>> q.draw(win) Point(500.0, 300.0) >>> l = Line(p,q) >>> l.draw(win) Line(Point(100.0, 200.0), Point(500.0, 300.0)) >>> l.setFill("orange") >>> >>> center = Point(200,400) >>> c = Circle(center, 100) # radius is 100 >>> c.draw(win) Circle(Point(200.0, 400.0), 100.0) >>> c.setFill("orange") >>> c.setOutline("orange") >>> c.move(5,0) >>> c.move(5,0) >>> c.move(5,0) >>> c.move(5,0) >>> c.move(5,0) >>> c.move(5,0) >>> c.move(5,0) >>> c.move(5,0) >>> c.move(5,0) >>> for i in range(100): ... c.move(1,0) ... >>> for i in range(100000): ... c.move(0.01,0) ... >>> for i in range(100000): ... c.move(-0.01,0) ... >>> exit() pimento[~]$ cd cs21/inclass/w06/ pimento[w06]$ atom circles.py pimento[w06]$ python3 circles.py pimento[w06]$ python3 circles.py File "circles.py", line 1 """ ^ IndentationError: unexpected indent pimento[w06]$ python3 circles.py pimento[w06]$ python3 circles.py