Font size
Worksheetspython moving
Total questions: 8
Worksheet time: 5mins
What is wrong with this code?
import turtle
robo = turtle.Turtle
robo.shape('square')
Missing brackets
Missing colon
Missing comma
Incorrect spelling
What will be the output from this code?
forward(50)
left(90)
forward(100)
left(90)
forward(50)
left(90)
forward(100)
Rectangle
Square
Triangle
Circle
To stop the turtle drawing you need to use which of the following commands?
penup:
pen_up()
penup()
penup():
How do you tell that Python that you are going to use the turtle library?
import turtle
import Turtle
Import_turtle
Import Turtle
How do you write a program in python?
Using Word
Using IDLE
Using Paint
Using Notepad
There are 6 built-in shapes of turtle. The default shape is (a) .
The initial position of new turtle object is __________.
x = 0 and y = 0
x = 100 and y = 100
top left corner
top right corner
The turtle.left() method is used to change the direction of the turtle by the value of the argument that it takes. The turtle's position remains the same.
True
False
