The output of the following Python code will result in a shape similar to the alphabet . . . . . . . .
import turtlet=turtle.Turtle()t1=turtle.Turtle()t.left(45)t1.left(135)t.forward(100)t1.forward(100)

The output of the following Python code will result in a shape similar to the alphabet . . . . . . . .

import turtlet=turtle.Turtle()t1=turtle.Turtle()t.left(45)t1.left(135)t.forward(100)t1.forward(100)
Correct Answer V

Related Questions