我在學習python時做的乙個簡單的正方形中夾乙個圓形再夾乙個五角星
如下圖所示
)#畫正方形
t.begin_fill(
)for i in
range(4
):t.forward(
200)
t.right(90)
t.end_fill(
)t.right(90)
#調整畫筆位置
t.forward(
100)
t.fillcolor(
"blue"
)#準備畫圓形
t.begin_fill(
)t.circle(radius=
100)
t.end_fill(
)t.left(72)
#畫五角星
t.fillcolor(
"red"
)t.begin_fill(
)for i in
range(5
):t.forward(
200*math.cos(math.pi/10)
) t.left(
144)
t.end_fill(
)t.done(
)
Python用Turtle畫美國國旗
由來 小白學習python 瘋狂的python 快速入門精講 p input 請輸入國旗高度 國旗尺寸 p float p a 1.9 一些重要數值 b 1.0 c 1.9 2 5 d 7 13 e c 12 f d 10 k 0.0616 l 1 13 m 0.37 import turtle a...
Python 用turtle模組畫海龜的第一步
檔名 text.cpp 完成日期 2016年10月13日 版本號 v1.0 程式輸入 無 程式輸出 見執行結果 知識點 python中的turtle模組 首先引入模組 import turtle 然後建立乙個畫布,呼叫pen函式 t turtle.pen 接著會彈出一張畫布,如果你在idle中寫的 ...
用turtle畫onepiece標誌
這不是安和白的第一次合作了o 智商和時間有限,只能選一張簡潔的圖,選別的怕是要畫到入土。點選開始偉大航路 心有多大,屏有多大,畫就有多大 import turtle as t t.setup width 1.0,height 1.0 t.screensize 1500,1500,white t.hi...