代码:
import turtle
turtle.fillcolor('red')
turtle.begin_fill()
count=1
while count<=6:
turtle.forward(50)
turtle.right(-60)
turtle.forward(50)
turtle.right(120)
count+=1
turtle.write('小郑画的')
turtle.end_fill()
结果:
代码:
import turtle
turtle.fillcolor('red')
turtle.begin_fill()
count=1
while count<=6:
turtle.forward(50)
turtle.right(-60)
turtle.forward(50)
turtle.right(120)
count+=1
turtle.write('小郑画的')
turtle.end_fill()
结果: