1. 程式人生 > >一分鐘學會用python畫心_turtle庫

一分鐘學會用python畫心_turtle庫

效果展示

  • turtle庫部分詳解請檢視本部落格 python_turtle庫部分詳解 對turtle 零基礎也可以輕鬆看懂程式碼
  • 應用python的turtle庫,生成的圖片是動態的
    這裡寫圖片描述
import turtle

t = turtle.Turtle()


def curvemove():
    for i in range(200):
        t.right(1)
        t.forward(1)


t.color('red', 'pink')
t.begin_fill()
t.left(140)
t.forward(111.65)
curvemove()
t.left(
120) curvemove() t.forward(111.65) t.end_fill() turtle.done()