how to make a triangle 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()

4
6
Pietrosek 85 points

                                    import turtle
 
board = turtle.Turtle()
 
board.forward(100) # draw base
 
board.left(120)
board.forward(100)
 
board.left(120)
board.forward(100)
 
turtle.done()

4 (6 Votes)
0
Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
draw with turtle python how to fill a triangle in turtle python\ draw a triangle turtle python import turtle make a star triangle with turtle python turtle draw triangle draw star with turtle python how to make python turtle draw instantly draw with python turtle can you create drawing using import turtle python how to draw a triangle with turtle in python how to draw with turtle python how to draw in python turtle how to move turtle in python without drawing a line how to move turtle in python without drawing how to draw something in turtle python move turtle without drawing how to draw a triangle with python turtle python turtle draw python turtle drawing examples triangle danger python turtle drawing examples triangle turtle triangle python python turtle draw function how to make turtle not draw python how to create triangle figur in python turtle create drawing in turtle python how to draw a triangle in turtle python how to move turtle without drawing how to draw a turtle turtle draw python how to draw a triangle with turtle on python star symbol in turtle python making star in turtle python draw triangle python turtle use turtle to let you draw python python turtle star how to make a triangle in turtle with python how to move turtle python without drawing how to make triangle in python 3 without turtle python turtle star code draw star using turtle in python how to draw in turtle python draw a star in turtle python triangle turtle python python turtle draw instantly python turtle don't draw python turtle draw line how to make a star with python turtle dont draw turtle python filled star in python turtle python turtle draw star how to instantly show turtle drawing python turtle star python how to make a triangle using python turtle star in turtle python draw a triangle in turtle python python turtle move without drawing draw a triangle in turtle python turtle right angle triangle draw triangle turtle python draw triangle with turtle how to draw a star using python turtle python turtle triangle python program draw without turtle how to drag click phyton turtle python how to make an oval on turtle best python turtle drawing turtle.trangle how to draw a triangle shape in turtle python draw triangle using turtle in python how to make a triangle in python turtle how to draw in python without turtle how to make a star in python turtle
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source