第19140题 判断
运行给定Python turtle代码是否可以画出黑色边框、红色填充的圆?
import turtle
turtle.penup()
turtle.begin_fill()
turtle.color('black', 'red')
turtle.circle(100)
turtle.end_fill()
turtle.pendown()
turtle.forward(100)
A

正确

B

错误