第10972题 单选
使用Python turtle库画圆时,speed()函数填入哪个数值绘图速度最快?
import turtle
turtle.pendown()
turtle.speed(?)
turtle.circle(100)
A

1

B

5

C

10

D

0