how to make a star in python turtle

Solutions on MaxInterview for how to make a star in python turtle by the best coders in the world

showing results for - "how to make a star in python turtle"
Marc
30 Nov 2018
1import turtle
2
3t=turtle.Turtle()
4for i in range(5):
5  t.begin_fill()    
6  t.forward(75)
7  t.right(144)
8t.end_fill()