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 Parallelogram with Python and TurtleParallelogram with Python and Turtle 11/24/202111/24/2021 | JinshengJinsheng | 0 Comment Draw a simple parallelogram with Python and Turtle. It can have any angles and any side lengths. 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
Parallelogram with Python and TurtleParallelogram with Python and Turtle 11/24/202111/24/2021 | JinshengJinsheng | 0 Comment Draw a simple parallelogram with Python and Turtle. It can have any angles and any side lengths. 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)