Draw a football shape vertically with Python and Turtle.
![](https://i0.wp.com/pythonturtle.academy/wp-content/uploads/2020/08/Screen-Shot-2020-08-18-at-1.31.07-PM.png?resize=640%2C618&ssl=1)
Code:
r = 150
turtle.up()
turtle.goto(0,-r/2**0.5)
turtle.left(45)
turtle.down()
turtle.circle(r,90)
turtle.left(90)
turtle.circle(r,90)
Draw a football shape vertically with Python and Turtle.
Code:
r = 150
turtle.up()
turtle.goto(0,-r/2**0.5)
turtle.left(45)
turtle.down()
turtle.circle(r,90)
turtle.left(90)
turtle.circle(r,90)