首页 > 编程语言 > 详细

python turtle库-读书笔记

时间:2020-03-11 21:37:52      阅读:73      评论:0      收藏:0      [点我收藏+]
 1 import turtle
 2 turtle.setup(800,400,200,200)
 3 turtle.pensize(2)
 4 turtle.fillcolor("red")
 5 turtle.begin_fill()
 6 turtle.fd(180)
 7 turtle.seth(-144)
 8 turtle.fd(180)
 9 turtle.seth(72)
10 turtle.fd(180)
11 turtle.seth(-72)
12 turtle.fd(180)
13 turtle.seth(144)
14 turtle.fd(180)
15 turtle.end_fill()
16 turtle.seth(72)
17 import math
18 n=90/math.sin(2/5*math.pi)
19 turtle.circle(-n,360)

学以致用

技术分享图片

 

python turtle库-读书笔记

原文:https://www.cnblogs.com/lxw2020/p/12465402.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!