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 Football Shape with Python TurtleFootball Shape with Python Turtle 08/18/202008/18/2020 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a football shape as shown with Turtle’s circle function. Code: READ MOREREAD MORE Bird HouseBird House 05/06/201905/06/2019 | Steven GuSteven Gu | 0 Comment READ MOREREAD MORE YouTube LogoYouTube Logo 04/28/201904/28/2019 | Kevin XuKevin Xu | 0 Comment Draw YouTube symbol with round corners! 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)
Football Shape with Python TurtleFootball Shape with Python Turtle 08/18/202008/18/2020 | J & J Coding AdventureJ & J Coding Adventure | 0 Comment Draw a football shape as shown with Turtle’s circle function. Code: READ MOREREAD MORE
YouTube LogoYouTube Logo 04/28/201904/28/2019 | Kevin XuKevin Xu | 0 Comment Draw YouTube symbol with round corners! 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!