Nov-10-2018, 11:00 PM
(This post was last modified: Nov-10-2018, 11:00 PM by MasterJediKnight7.)
(Nov-10-2018, 10:41 PM)Gribouillis Wrote:This code works:(Nov-10-2018, 10:15 PM)MasterJediKnight7 Wrote: A:\0_ingschool\Courses\Fundamentals of Algorithm\Python\Group Projects\turtle.pyThis is most certainly the faulty file. Try to give another name to this file.
1 2 3 4 5 |
from turtle import * forward( 120 ) left( 90 ) color( 'red' ) forward( 80 ) |
1 2 3 4 5 6 7 8 9 10 11 12 |
from turtle import * while True : foward( 1 ) left( 1.15 ) color( "blue" ) pensize( 4 ) for i in range ( 313 ): foward( 2 ) left( 1.15 ) |
1 2 3 4 |
from turtle import * myTurtle = turtle.Turtle() myTurtle.circle( 50 ) turtle.getscreen()._root.mainloop() |