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 Three Tilted SquaresThree Tilted Squares 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw the following shape with 3 tilted squares. READ MOREREAD MORE Two CirclesTwo Circles 08/18/202008/18/2020 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw double circles as shown without lifting the pen. READ MOREREAD MORE Two Circles 2Two Circles 2 08/18/202008/18/2020 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw two circles as shown without lifting the pen. READ MOREREAD MORE
Three Tilted SquaresThree Tilted Squares 02/26/201902/26/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw the following shape with 3 tilted squares. READ MOREREAD MORE
Two CirclesTwo Circles 08/18/202008/18/2020 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw double circles as shown without lifting the pen. READ MOREREAD MORE
Two Circles 2Two Circles 2 08/18/202008/18/2020 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw two circles as shown without lifting the pen. READ MOREREAD MORE
import turtle
for i in range(5):
turtle.fd(200)
turtle.right(144)