标签:div for turtle bubuko info enc imp 循环 fill
import turtle turtle.setup(600,400,0,0) turtle.bgcolor(‘red‘) turtle.pencolor(‘yellow‘) turtle.fillcolor(‘yellow‘) turtle.penup() turtle.goto(-250,100) turtle.pendown() turtle.begin_fill() for i in range(5): turtle.forward(100) turtle.right(144) turtle.end_fill() turtle.penup() turtle.goto(-100,100) turtle.pendown() turtle.begin_fill() for i in range(5): turtle.forward(100) turtle.right(144) turtle.end_fill() turtle.done()
标签:div for turtle bubuko info enc imp 循环 fill
原文地址:https://www.cnblogs.com/lvchenhui/p/9047851.html