import turtle t = turtle.Turtle() s = turtle.Screen() s.bgcolor("black") t.pencolor('white') t.width(2) t.circle(90) turtle.done()