def drawStar(N, R): turtle.reset() a = 360/N for i in range(N): turtle.fd(R) turtle.bk(R) turtle.left(a)