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 Tutorial: Rounded Rectangle or Square with Python TurtleTutorial: Rounded Rectangle or Square with Python Turtle 05/06/201905/06/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment In this tutorial we are going to show how to draw rectangles or squares with round corners. We will start by drawing the bottom straight-line with blue color. The following READ MOREREAD MORE 3×3 Squares3×3 Squares 05/04/201905/04/2019 | James LiuJames Liu | 0 Comment Draw a 3×3 squares filled with random colors. READ MOREREAD MORE Five RingsFive Rings 03/27/201903/27/2019 | IreneIrene | 0 Comment Draw five colored rings as shown here. 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)
Tutorial: Rounded Rectangle or Square with Python TurtleTutorial: Rounded Rectangle or Square with Python Turtle 05/06/201905/06/2019 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment In this tutorial we are going to show how to draw rectangles or squares with round corners. We will start by drawing the bottom straight-line with blue color. The following READ MOREREAD MORE
3×3 Squares3×3 Squares 05/04/201905/04/2019 | James LiuJames Liu | 0 Comment Draw a 3×3 squares filled with random colors. READ MOREREAD MORE
Five RingsFive Rings 03/27/201903/27/2019 | IreneIrene | 0 Comment Draw five colored rings as shown here. 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!