原创 測驗2: Python基本圖形繪製 (第1周)

1.turtle八邊形繪製 描述 使用turtle庫,繪製一個八邊形。 輸出示例 八邊形效果如下: import turtle as t t.pensize(2) for i in range(8): t.f