The Number Of Lines Drawn In Each Case Assuming That The Turtle #904
The number of lines drawn in each case, assuming that the turtle module has been imported:</p> <pre><code class="language-python">Case 1: for i in range(0,10): turtle.forward(100) turtle.left(90) Case 2: for i in range(1,10): turtle.forward(100) turtle.left(90)</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Python Modules - Python Turtle Module - Quiz No.1.