分析下列程序,说法错误的是?( )
import turtle turtle.color('blue') turtle.fillcolor('yellow') turtle.begin_fill() turtle.circle(50) turtle.end_fill() turtle.forward(100) turtle.color('red', 'aqua') turtle.begin_fill() turtle.circle(50) turtle.end_fill()
turtle.color('blue')表示的含义为:设置轮廓和填充颜色均为"blue"
turtle.fllcolor('yellow')表示的含义为:设置填充颜色为"yellow"
程序运行结果为:绘制两个圆,左边圆填充颜色为"yellow",右边圆的颜色为"aqua"
最终绘制两个圆的轮廓颜色均为"blue"