Python and Turtle Difficulty Level 2 Vertical Football with Python Turtle

Vertical Football with Python Turtle

Draw a football shape vertically with Python and Turtle.

Vertical Football Shape with Python 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)
Tags:

Related Post