[Tutor] Turtle help

Alan Gauld alan.gauld at yahoo.co.uk
Fri Aug 28 18:55:34 EDT 2020


On 28/08/2020 21:32, Carrie Udowychenko wrote:
> I am new to Python and have tried every command I can find but still do not
> seem to be able to access a turtle library and do any drawing.
> 
> I have tried: import turtle
> and from turtle import *
> 
> But after both of these any commands like forward or right still show
> errors and forward is not recognized. Please help


The missing magic may be

turtle.pendown()

Once you do that the turtle and its actions become visible.

-- 
Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/
http://www.amazon.com/author/alan_gauld
Follow my photo-blog on Flickr at:
http://www.flickr.com/photos/alangauldphotos




More information about the Tutor mailing list