> I'm trying to use turtle in python to draw a circle and I need help?

I'm trying to use turtle in python to draw a circle and I need help?

Posted at: 2014-12-18 
Try "def drawSquare()" instead of "def drawSquare".

Does anyone know why I'm getting this error?

Traceback (most recent call last):

File "C:/Python34/ged.py", line 1, in

import turtle

File "C:/Python34\turtle.py", line 11

def drawSquare

^

SyntaxError: invalid syntax

Here's my code:

import turtle

def drawCircle(circ):

ged=turtle.Turtle()

ged.shape("blank")

ged.speed(0)

for x in range(360):

ged.forward(1)

ged.right(1)

def main():

wn=turtle.Screen()

drawCircle()



main()