1、开始填充 t.begin_fill()2、设置填充颜色 t.fillcolor('red')3、画正方形 4、结束填充 t.endfill()小结 (1)begin_fill和end_fill是用来给画布上的一个区域填色的。默认填充黑色。(2)fillcolor是设置填充颜色的。(1)红色房身 t.begin_fill()t.fillcolor("red")#画房身命令 t.end_fill()(2...
turtle.fillcolor('red') #设置填充的颜色(当然是英文了) turtle.begin_fill() #开始填充 turtle.end_fill() #结束填充 1. turtle.fillcolor()设置填充的颜色比如红色“red”,蓝色“blue”,黑色“black”,黄色“yellow”等等。只要把想要的颜色的英文名字参数输入函数就可以了。填充之前要先写turtle.begin_fill...
import matplotlib.pyplot as plt x = [1, 2, 3, 4, 5] y = [2, 3, 5, 3, 2] plt.plot(x, y) plt.fill(x, y, color='green') plt.show() A选项:函数用于填充给定闭合区域颜色 B选项:函数用于填充曲线上方的区域颜色 C选项:函数用于填充曲线两边的区域颜色 D选项:alpha设置为0表示完全不透...
turtle.pensize(5) #画笔大小为5 turtle.pencolor("red") #画笔颜色为红 turtle.fillcolor("green") #填充颜色为绿 turtle.begin_fill() #开始填充 for i in range(4): #循环四次 turtle.forward(200) #前进200 turtle.left(90) #左转90度 turtle.end_fill() #结束填充 turtle.done() #导入结束 #...