[Tutor] Pi xels

Steven D'Aprano steve at pearwood.info
Thu May 9 20:26:12 CEST 2013


On 10/05/13 00:36, Stafford Baines wrote:
> Is there a way of controlling pixels on a graphics screen? I want to be able to draw lines and curves. Is this possible with with Python?


There are many powerful libraries for working with graphics in Python, but they often have a very steep learning curve. An easy place to start is with the turtle graphics module, inspired by Logo.

http://docs.python.org/2/library/turtle.html

http://docs.python.org/3/library/turtle.html


-- 
Steven


More information about the Tutor mailing list