Tea Cup 03/23/201903/23/2019 | IreneIrene | 2 Comments | 11:43 pm Categories: Difficulty Level 2 Draw a simple tea cup shape as shown here. Tea Cup Tags: basics 2 thoughts on “Tea Cup” import turtle turtle.speed(0) turtle.up() turtle.circle(100,270) turtle.down() turtle.circle(100,180) turtle.left(90) turtle.fd(200) turtle.left(18) turtle.circle(25,180) Good! Comments are closed. Post navigation PREVIOUS Previous post: Thirty SpokesNEXT Next post: Sierpinski Carpet 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 Netflix Logo with Python TurtleNetflix Logo with Python Turtle 05/05/201905/05/2019 | Cindy WangCindy Wang | 0 Comment READ MOREREAD MORE Hexagon Spiral with Python and Turtle (Source Code)Hexagon Spiral with Python and Turtle (Source Code) 08/21/202008/21/2020 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw the following spiral with hexagon shape. In each loop, increase the forward length and turn slightly less than 60 degrees. Source Code: READ MOREREAD MORE
import turtle turtle.speed(0) turtle.up() turtle.circle(100,270) turtle.down() turtle.circle(100,180) turtle.left(90) turtle.fd(200) turtle.left(18) turtle.circle(25,180)
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
Netflix Logo with Python TurtleNetflix Logo with Python Turtle 05/05/201905/05/2019 | Cindy WangCindy Wang | 0 Comment READ MOREREAD MORE
Hexagon Spiral with Python and Turtle (Source Code)Hexagon Spiral with Python and Turtle (Source Code) 08/21/202008/21/2020 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw the following spiral with hexagon shape. In each loop, increase the forward length and turn slightly less than 60 degrees. Source Code: READ MOREREAD MORE
import turtle
turtle.speed(0)
turtle.up()
turtle.circle(100,270)
turtle.down()
turtle.circle(100,180)
turtle.left(90)
turtle.fd(200)
turtle.left(18)
turtle.circle(25,180)
Good!