天天看點

【Python turtle 畫愛心】實戰學習

效果如下:

【Python turtle 畫愛心】實戰學習

代碼如下:

【Python turtle 畫愛心】實戰學習
from turtle import *
def curvemove():
    for i in range(200):
        right(1)
        forward(1)
color('red','pink')        
begin_fill()
left(140)
forward(111.65)
curvemove()
left(120)
curvemove()
forward(111.65)
end_fill()
done()
           

具體細節,有空再更。

【Python turtle 畫愛心】實戰學習