Draw a Circle in Python with turtle

import turtle
turtle.color("red")
turtle.circle(50)

Output:

Draw a Circle in Python with turtle