python turtle star code example
Example: how to make a star in python turtle
import turtle
t=turtle.Turtle()
for i in range(5):
t.begin_fill()
t.forward(75)
t.right(144)
t.end_fill()
import turtle
t=turtle.Turtle()
for i in range(5):
t.begin_fill()
t.forward(75)
t.right(144)
t.end_fill()