Draw a simple dog bone shape with Python and Turtle. This shape contains 2 lines and 4 arcs. You can draw the shape in one stroke without lifting the pen
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
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!