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 Half CircleHalf Circle 03/25/201903/25/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a vertical half circle as shown here. You may need to use seth() and circle() with extent. 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 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
Half CircleHalf Circle 03/25/201903/25/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a vertical half circle as shown here. You may need to use seth() and circle() with extent. 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
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
import turtle
for i in range(5):
turtle.fd(200)
turtle.right(144)