turtle库画六角星

import turtle as t

t.color("black", "red")

t.begin_fill()
t.pu()
t.fd(-200)
t.pd()
t.seth(30)
t.fd(300)
t.seth(-90)
t.fd(300)
t.seth(150)
t.fd(300)
t.end_fill()

t.pu()
t.seth(90)
t.fd(150)
t.seth(0)
t.fd(87)
t.begin_fill()

t.pd()
t.seth(-90)
t.fd(300)
t.seth(30)
t.fd(300)
t.seth(150)
t.fd(300)
t.end_fill()
t.done()

 

posted @ 2020-09-15 17:12  我的人生不止一部戏  阅读(439)  评论(0)    收藏  举报