From 2a389e4601a462a028fb34991704a1f92d51d0ee Mon Sep 17 00:00:00 2001 From: Sandro Tosi Date: Sun, 7 Aug 2011 17:12:19 +0200 Subject: #12677: correct turtle orientation in doc --- Lib/turtle.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Lib/turtle.py') diff --git a/Lib/turtle.py b/Lib/turtle.py index 2ff54278e2..8fb366a7eb 100644 --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -27,10 +27,10 @@ Turtle graphics is a popular way for introducing programming to kids. It was part of the original Logo programming language developed by Wally Feurzig and Seymour Papert in 1966. -Imagine a robotic turtle starting at (0, 0) in the x-y plane. Give it +Imagine a robotic turtle starting at (0, 0) in the x-y plane. After an ``import turtle``, give it the command turtle.forward(15), and it moves (on-screen!) 15 pixels in the direction it is facing, drawing a line as it moves. Give it the -command turtle.left(25), and it rotates in-place 25 degrees clockwise. +command turtle.right(25), and it rotates in-place 25 degrees clockwise. By combining together these and similar commands, intricate shapes and pictures can easily be drawn. -- cgit v1.2.1