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 Horizontally Tangent CirclesHorizontally Tangent Circles 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw the following horizontally tangent circles. Learn to use setheading() function. 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 Tangent CirclesTangent Circles 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a few tangent circles as seen below. READ MOREREAD MORE
Horizontally Tangent CirclesHorizontally Tangent Circles 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw the following horizontally tangent circles. Learn to use setheading() function. 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
Tangent CirclesTangent Circles 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a few tangent circles as seen below. READ MOREREAD MORE
import turtle
for i in range(5):
turtle.fd(200)
turtle.right(144)