Popsicle 03/29/201903/29/2019 | IreneIrene | 2 Comments | 9:37 pm Categories: Difficulty Level 2 Draw a popsicle! Popsicle with Python Turtle Tags: basics 2 thoughts on “Popsicle” import turtle turtle.speed(0) turtle.pensize(7.5) turtle.begin_fill() turtle.fillcolor(‘bisque’) turtle.right(90) turtle.fd(70) turtle.circle(10,180) turtle.fd(70) turtle.left(90) turtle.fd(20) turtle.end_fill() turtle.begin_fill() turtle.fillcolor(‘pink’) turtle.fd(100) turtle.left(180) turtle.fd(220) turtle.left(90) turtle.fd(250) turtle.circle(110,180) turtle.fd(250) turtle.end_fill() Great. Looks good! Comments are closed. Post navigation PREVIOUS Previous post: Happy Egg HeadsNEXT Next post: Watermelon Related Post Müller-Lyer Illusion with Python TurtleMüller-Lyer Illusion with Python Turtle 11/18/201911/18/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Which arrow is longer? They are actually the same length but the one on top looks longer. This illusion is called Müller-Lyer Illusion. READ MOREREAD MORE Trefoil Shape with Python and TurtleTrefoil Shape with Python and Turtle 11/24/202111/24/2021 | JinshengJinsheng | 0 Comment Trefoil, comes from Lantin, means three-leaved plant. It is a shape used in architecture and Christian symbolism. For more details about this shape checkout this Wikipedia article. Hint: This shape READ MOREREAD MORE Dodecagon with Python TurtleDodecagon with Python Turtle 05/27/201905/27/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a Dodecagon or a regular polygon with 12 sides with Python Turtle. What’s next?Random AsteroidsRandom Asteroids in Space Related Projects READ MOREREAD MORE
import turtle turtle.speed(0) turtle.pensize(7.5) turtle.begin_fill() turtle.fillcolor(‘bisque’) turtle.right(90) turtle.fd(70) turtle.circle(10,180) turtle.fd(70) turtle.left(90) turtle.fd(20) turtle.end_fill() turtle.begin_fill() turtle.fillcolor(‘pink’) turtle.fd(100) turtle.left(180) turtle.fd(220) turtle.left(90) turtle.fd(250) turtle.circle(110,180) turtle.fd(250) turtle.end_fill()
Müller-Lyer Illusion with Python TurtleMüller-Lyer Illusion with Python Turtle 11/18/201911/18/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Which arrow is longer? They are actually the same length but the one on top looks longer. This illusion is called Müller-Lyer Illusion. READ MOREREAD MORE
Trefoil Shape with Python and TurtleTrefoil Shape with Python and Turtle 11/24/202111/24/2021 | JinshengJinsheng | 0 Comment Trefoil, comes from Lantin, means three-leaved plant. It is a shape used in architecture and Christian symbolism. For more details about this shape checkout this Wikipedia article. Hint: This shape READ MOREREAD MORE
Dodecagon with Python TurtleDodecagon with Python Turtle 05/27/201905/27/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a Dodecagon or a regular polygon with 12 sides with Python Turtle. What’s next?Random AsteroidsRandom Asteroids in Space Related Projects READ MOREREAD MORE
import turtle
turtle.speed(0)
turtle.pensize(7.5)
turtle.begin_fill()
turtle.fillcolor(‘bisque’)
turtle.right(90)
turtle.fd(70)
turtle.circle(10,180)
turtle.fd(70)
turtle.left(90)
turtle.fd(20)
turtle.end_fill()
turtle.begin_fill()
turtle.fillcolor(‘pink’)
turtle.fd(100)
turtle.left(180)
turtle.fd(220)
turtle.left(90)
turtle.fd(250)
turtle.circle(110,180)
turtle.fd(250)
turtle.end_fill()
Great. Looks good!