for循环:用turtle画一颗五角
Posted 三米巨人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for循环:用turtle画一颗五角相关的知识,希望对你有一定的参考价值。
import turtle turtle.pencolor(\'blue\') turtle.fillcolor(\'red\') turtle.begin_fill() while True: turtle.forward(100) turtle.right(50) if abs(turtle.position())<1: break turtle.end_fill() turtle.done()
import turtle turtle.bgcolor(\'red\') turtle.pencolor(\'yellow\') turtle.fillcolor(\'yellow\') turtle.begin_fill() turtle.forward(300) turtle.right(144) turtle.forward(300) turtle.right(144) turtle.forward(300) turtle.right(144) turtle.forward(300) turtle.right(144) turtle.forward(300) turtle.right(144) turtle.end_fill() turtle.done()
以上是关于for循环:用turtle画一颗五角的主要内容,如果未能解决你的问题,请参考以下文章