python turtle畫簡易的太極圖

import turtle t=turtle.Turtle() t.penup() t.goto(0,-50)#設置起始座標 t.pendown() t.begin_fill() t.fillcolor('black') t.circle(150,extent=180) t.circle(75,extent=180)#半徑正負代表逆時針和順時針畫 t.circle(-75,extent=180)
相關文章
相關標籤/搜索