码迷,mamicode.com
首页 > 其他好文 > 详细

8.五角星绘制

时间:2020-03-14 15:01:28      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:end   image   注意   执行   color   inf   port   begin   class   

 1 import turtle
 2 import time
 3 
 4 turtle.pensize(1)
 5 turtle.pencolor("black") #画笔黑色
 6 turtle.fillcolor("red") #内部填充红色
 7 #绘制五角星#
 8 turtle.begin_fill()
 9 for _ in range(5): #重复执行5次
10     turtle.forward(200) #向前移动200步
11     turtle.right(144)  #向右移动144度,注意这里的参数一定不能变
12 turtle.end_fill() #结束填充红色
13 time.sleep(1)
14 turtle.mainloop()

技术图片

 

8.五角星绘制

标签:end   image   注意   执行   color   inf   port   begin   class   

原文地址:https://www.cnblogs.com/yeu4h3uh2/p/12491978.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!