Examveda

What will be the output of the following Python code?
import turtle
t=turtle.Pen()
for i in range(0,5):
        t.left(144)
        t.forward(100)

A. Trapezium

B. Parallelepiped

C. Tetrahedron

D. Star

Answer: Option D


This Question Belongs to Python Program >> Module In Python

Join The Discussion

Related Questions on Module in Python