首頁>技術>

3.8女神節來臨之際,一時興起,畫了一幅py賀卡,用影片軟體處理了下加了背景音樂、濾鏡和字幕,朋友很驚喜~感慨了下:為啥那些男程式猿就沒有這樣的覺悟(朋友的男票是程式猿)

這裡奉上程式碼給小夥伴們,可以稍作修改給身邊人送個小小驚喜哦~

import mathimport random import turtle as t  list1=[]for i in range(5):    list1.append(int(random.uniform(-500,500)))list2=[]for i in range(5):    list2.append(int(random.uniform(-200,-50)))list3=[]for i in range(8):    list3.append(int(random.uniform(-400,400)))list4=[]for i in range(8):    list4.append(int(random.uniform(-150,-50)))list5=[]for i in range(7):    list5.append(int(random.uniform(-300,300)))list6=[]for i in range(7):    list6.append(int(random.uniform(-200,-100)))list7=[]for i in range(18):    list7.append(int(random.uniform(-500,500)))list8=[]for i in range(18):    list8.append(int(random.uniform(-100,100)))#繪製人名    t.speed(0)t.penup()t.goto(-290,200)t.pendown()t.color("black")t.forward(30)t.backward(15)t.right(90)t.forward(45)t.penup()t.goto(-250,170)t.pendown()t.circle(15,180)t.forward(15)t.circle(15,180)t.forward(15)t.penup()t.goto(-200,190)t.pendown()t.fillcolor("black")t.begin_fill()t.pencolor("black")t.circle(3, 360)t.penup()t.goto(-200,170)t.pendown()t.circle(3,360)t.end_fill()t.penup()t.goto(-190,200)t.pendown()t.left(45)t.forward(25)t.penup()t.goto(-155,200)t.pendown()t.right(90)t.forward(25)t.left(45)t.forward(30)t.penup()t.goto(-150,170)t.pendown()t.circle(15,180)t.forward(15)t.circle(15,180)t.forward(15)t.penup()t.goto(-135,170)t.pendown()t.left(55)t.forward(25)t.penup()t.goto(0,0)t.left(35)#將畫筆設定到初始化位置 #畫大號愛心(位置隨機)for x,y in list(zip(list1,list2)):    t.penup()    t.goto(x, y)    t.pendown()    t.fillcolor("#FF6A6A")    t.begin_fill()    t.pencolor("#FF6A6A")    t.forward(40)    t.circle(20, 180)    t.right(90)    t.circle(20, 180)    t.forward(40)    t.end_fill()    t.penup()    t.goto(x, y)#畫中號愛心(位置隨機)for x,y in list(zip(list5,list6)):    t.pendown()    t.fillcolor("#FFA07A")    t.begin_fill()    t.pencolor("#FFA07A")    t.forward(30)    t.circle(15, 180)    t.right(90)    t.circle(15, 180)    t.forward(30)    t.end_fill()    t.penup()    t.goto(x, y)#畫小號愛心(位置隨機)for x,y in list(zip(list3,list4)):    t.pendown()    t.fillcolor("#FFD39B")    t.begin_fill()    t.pencolor("#FFD39B")    t.forward(20)    t.circle(10,180)    t.right(90)    t.circle(10,180)    t.forward(20)    t.end_fill()    t.penup()    t.goto(x, y)#畫點點(位置隨機)for x,y in list(zip(list7,list8)):    t.pendown()    t.fillcolor("#FF6A6A")    t.begin_fill()    t.pencolor("#FF6A6A")    t.circle(3, 360)    t.end_fill()    t.penup()    t.goto(x, y)  def DegreeCurve(n, r, d=1):    for i in range(n):        t.left(d)        t.circle(r, abs(d))# 初始位置設定s = 0.2# t.setup(450*5*s, 750*5*s)t.pencolor("black")t.fillcolor("#FF4040")t.speed(100)t.penup()t.goto(0, 900*s)t.pendown()# 繪製花朵形狀t.begin_fill()t.circle(200*s,30)DegreeCurve(60, 50*s)t.circle(200*s,30)DegreeCurve(4, 100*s)t.circle(200*s,50)DegreeCurve(50, 50*s)t.circle(350*s,65)DegreeCurve(40, 70*s)t.circle(150*s,50)DegreeCurve(20, 50*s, -1)t.circle(400*s,60)DegreeCurve(18, 50*s)t.fd(250*s)t.right(150)t.circle(-500*s,12)t.left(140)t.circle(550*s,110)t.left(27)t.circle(650*s,100)t.left(130)t.circle(-300*s,20)t.right(123)t.circle(220*s,57)t.end_fill()# 繪製花枝形狀t.left(120)t.fd(280*s)t.left(115)t.circle(300*s,33)t.left(180)t.circle(-300*s,33)DegreeCurve(70, 225*s, -1)t.circle(350*s,104)t.left(90)t.circle(200*s,105)t.circle(-500*s,63)t.penup()t.goto(170*s,-30*s)t.pendown()t.left(160)DegreeCurve(20, 2500*s)DegreeCurve(220, 250*s, -1)# 繪製一個綠色葉子t.fillcolor('#00CD00')t.penup()t.goto(670*s,-180*s)t.pendown()t.right(140)t.begin_fill()t.circle(300*s,120)t.left(60)t.circle(300*s,120)t.end_fill()t.penup()t.goto(180*s,-550*s)t.pendown()t.right(85)t.circle(600*s,40)# 繪製另一個綠色葉子t.penup()t.goto(-150*s,-1000*s)t.pendown()t.begin_fill()t.rt(120)t.circle(300*s,115)t.left(75)t.circle(300*s,100)t.end_fill()t.penup()t.goto(430*s,-1070*s)t.pendown()t.right(30)t.circle(-600*s,35)   t.done()

以下是錄製的慢動作執行圖,可以清楚看到繪畫軌跡:

執行完成的結果如下:

4
最新評論
  • BSA-TRITC(10mg/ml) TRITC-BSA 牛血清白蛋白改性標記羅丹明
  • 韋東山STM32F103軟硬體資料全開源 無縫銜接Linux