Answers for "how to fill a triangle in turtle python\"

1

how to make a triangle in python turtle

import turtle
 
board = turtle.Turtle()
 
board.forward(100) # draw base
 
board.left(120)
board.forward(100)
 
board.left(120)
board.forward(100)
 
turtle.done()
Posted by: Guest on January-29-2021

Code answers related to "how to fill a triangle in turtle python\"

Python Answers by Framework

Browse Popular Code Answers by Language