What is the purpose of 'from turtle import *'?
No specific purpose
For constructing geometrical shapes
For turtle instructions to work in python
For supporting python code
What is the output of the following code:s= 0for i in range (1, 6):s= s+iprint i
5
15
10
6
Which of following is an iteration instruction?
for
if
rt ()
range
What is Turtle?
Circle
An arrow mark
Dot
Square
Predict the output?s= 0for i in range (1,6):s= s+iprint s
4
21
Which of the following is the text editor, commonly used for coding HTML or Python?
Gedit
PhET
IDLE
BSD
Write a program code to print numbers from 1 to 10 ?
for i in range (10):print i
for i in range (0, 10):print i
for i in range (1, 11):print i
for i in range (1,10):print i