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()


浙公网安备 33010602011771号