Which command is used, when you want to move the turtle without drawing line?
Answers
Answered by
3
Answer:
If you wish, you can move the turtle without drawing a line by typing PENUP or PU. When you wish to resume drawing, type PENDOWN or PD.
Answered by
2
Answer:
- To move the turtle without drawing line, the PE or PENUP command is used.
Explanation:
The PE or PENUP command lifts the turtle up. So, the turtle will not draw any line.
To understand this, let us write the cσde given below,
FD 50
RT 90
PE
FD 50
RT 90
PD
See fig 1 for output.
In this case, the turtle moves forward by 50 steps an rotates 90° right. When PE command is executed, the turtle lifts the pen up. Now, we can see that the turtle is not drawing anything. To draw again, the PD command is used. The PD command puts down the pen. After execution of this command, the turtle can draw again.
•••♪
Attachments:
Similar questions