绘制五星红旗
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了绘制五星红旗相关的知识,希望对你有一定的参考价值。
import turtle turtle.pensize(2) turtle.setup(600,400,0,0) turtle.color("yellow") turtle.bgcolor(‘red‘) turtle.fillcolor("yellow") turtle.up() turtle.goto(-250,100) turtle.down() turtle.begin_fill() for i in range(6): turtle.forward(100) turtle.right(144) turtle.end_fill() turtle.up() turtle.goto(-120,160) turtle.down() turtle.begin_fill() turtle.right(90) for i in range(6): turtle.forward(20) turtle.right(144) turtle.end_fill() turtle.up() turtle.goto(-100,140) turtle.down() turtle.begin_fill() turtle.right(90) for i in range(6): turtle.forward(20) turtle.right(144) turtle.end_fill() turtle.up() turtle.goto(-100,100) turtle.down() turtle.begin_fill() turtle.right(180) for i in range(6): turtle.forward(20) turtle.right(144) turtle.end_fill() turtle.up() turtle.goto(-120,40) turtle.down() turtle.begin_fill() turtle.right(90) for i in range(6): turtle.forward(20) turtle.right(144) turtle.end_fill() turtle.hideturtle()
以上是关于绘制五星红旗的主要内容,如果未能解决你的问题,请参考以下文章