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 Da PizzaDa Pizza 04/09/201904/09/2019 | Dorothy ZhangDorothy Zhang | 0 Comment Draw a pepperoni pizza like this: READ MOREREAD MORE Music NotesMusic Notes 04/17/201904/17/2019 | Kevin XuKevin Xu | 0 Comment Draw many randomly tilted and positioned music notes. READ MOREREAD MORE Hexagram with Python and TurtleHexagram with Python and Turtle 08/04/202208/04/2022 | JinshengJinsheng | 0 Comment Draw the following hexagram with Python and Turtle. Hint: Think about where to start. The point at the bottom looks like a good starting point. Related Projects: Projects with similar 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)
Da PizzaDa Pizza 04/09/201904/09/2019 | Dorothy ZhangDorothy Zhang | 0 Comment Draw a pepperoni pizza like this: READ MOREREAD MORE
Music NotesMusic Notes 04/17/201904/17/2019 | Kevin XuKevin Xu | 0 Comment Draw many randomly tilted and positioned music notes. READ MOREREAD MORE
Hexagram with Python and TurtleHexagram with Python and Turtle 08/04/202208/04/2022 | JinshengJinsheng | 0 Comment Draw the following hexagram with Python and Turtle. Hint: Think about where to start. The point at the bottom looks like a good starting point. Related Projects: Projects with similar 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!