From c4eb0f1f83cf85bc02a41c014a931faac741dd62 Mon Sep 17 00:00:00 2001 From: Liene Verzemnieks Date: Wed, 8 Jul 2015 18:17:20 -0400 Subject: [PATCH] bob is waaay too slow --- chapter04/mypolygon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter04/mypolygon.py b/chapter04/mypolygon.py index 35e625f..f1d0ceb 100644 --- a/chapter04/mypolygon.py +++ b/chapter04/mypolygon.py @@ -5,7 +5,7 @@ world = TurtleWorld() bob = Turtle() alice = Turtle() -bob.delay = 0.2 +bob.delay = 0.01 # draw square with a for loop! # for i in range(4):