Pentagram 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comments | 2:58 am Categories: Difficulty Level 1 Draw a five sided star called Pentagram. Tags: basics 1 thought on “Pentagram” import turtle for i in range(5): turtle.fd(200) turtle.right(144) Comments are closed. Post navigation PREVIOUS Previous post: TrapezoidNEXT Next post: Tangent Circles Related Post Right TriangleRight Triangle 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a right triangle. You can use goto(x,y) function along with forward(d) and left(angle). Related Projects READ MOREREAD MORE Three SpokesThree Spokes 03/23/201903/23/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw the following shape. You may need to use following functions: penup(), pendown(), setheading(), forward(), goto(). READ MOREREAD MORE TrapezoidTrapezoid 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a trapezoid shape. You can use goto(x,y) function together with foward() and left() functions. READ MOREREAD MORE
Right TriangleRight Triangle 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a right triangle. You can use goto(x,y) function along with forward(d) and left(angle). Related Projects READ MOREREAD MORE
Three SpokesThree Spokes 03/23/201903/23/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw the following shape. You may need to use following functions: penup(), pendown(), setheading(), forward(), goto(). READ MOREREAD MORE
TrapezoidTrapezoid 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a trapezoid shape. You can use goto(x,y) function together with foward() and left() functions. READ MOREREAD MORE
import turtle
for i in range(5):
turtle.fd(200)
turtle.right(144)