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 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 Instagram Logo with Python TurtleInstagram Logo with Python Turtle 05/05/201905/05/2019 | Vedant VivaanVedant Vivaan | 0 Comment READ MOREREAD MORE The BookThe Book 04/10/201904/10/2019 | Dorothy ZhangDorothy Zhang | 0 Comment Draw a book written by you 🙂 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)
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
Instagram Logo with Python TurtleInstagram Logo with Python Turtle 05/05/201905/05/2019 | Vedant VivaanVedant Vivaan | 0 Comment READ MOREREAD MORE
The BookThe Book 04/10/201904/10/2019 | Dorothy ZhangDorothy Zhang | 0 Comment Draw a book written by you 🙂 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!