运行下列python代码后可绘制出下面的半径为50的圆形。
import turtle turtle.color('red') turtle.penup() turtle.circle(50) turtle.pendown()