送你情人節(劫)專屬Python全套程式碼

Python小二發表於2022-02-20

今天是情人節,送你一套專屬Python程式碼,好像發的有點晚了 ... 不過也沒關係,可以留著下次用(手動狗頭)

玫瑰

部分程式碼實現如下:

# 花瓣1
turtle.left(150)
turtle.circle(-90, 70)
turtle.left(20)
turtle.circle(75, 105)
turtle.setheading(60)
turtle.circle(80, 98)
turtle.circle(-90, 40)
# 花瓣2
turtle.left(180)
turtle.circle(90, 40)
turtle.circle(-80, 98)
turtle.setheading(-83)
# 葉子1
turtle.fd(30)
turtle.left(90)
turtle.fd(25)
turtle.left(45)
turtle.fillcolor('green')
turtle.begin_fill()
turtle.circle(-80, 90)
turtle.right(90)
turtle.circle(-80, 90)
turtle.end_fill()
turtle.right(135)
turtle.fd(60)
turtle.left(180)
turtle.fd(85)
turtle.left(90)
turtle.fd(80)

效果:

愛心樹

部分程式碼實現如下:

# 畫愛心
def love(x, y):
    lv = turtle.Turtle()
    lv.hideturtle()
    lv.up()
    # 定位
    lv.goto(x, y)
    # 畫圓弧
    def curvemove():
        for i in range(20):
            lv.right(10)
            lv.forward(2)

    lv.color('red', 'pink')
    lv.speed(10000000)
    lv.pensize(1)
    lv.down()
    lv.begin_fill()
    lv.left(140)
    lv.forward(22)
    curvemove()
    lv.left(120)
    curvemove()
    lv.forward(22)
    # 畫完復位
    lv.left(140)
    lv.end_fill()

效果:

丘位元

部分程式碼實現如下:

t.color('red','pink')
t.begin_fill()
t.width(5)
t.left(135)
t.fd(100)
t.right(180)
t.circle(50,-180)
t.left(90)
t.circle(50,-180)
t.right(180)
t.fd(100)
t.pu()
t.goto(50,-30)
t.pd()
t.right(90)
t.fd(100)
t.right(180)
t.circle(50,-180)
t.left(90)
t.circle(50,-180)
t.right(180)
t.fd(100)
t.end_fill()
t.hideturtle()
t.pu()
t.goto(250,-70)
t.pd()

效果:

多彩氣球

部分程式碼實現如下:

# 氣球
balloons = []
# 顏色
color_option = ["red", "blue", "green", "purple", "pink", "yellow", "orange"]
# 氣球大小
size = 50
# 氣球線
def line(x, y, a, b, line_width=1, color_name="black"):
    up()
    goto(x, y)
    down()
    color(color_name)
    width(line_width)
    goto(a, b)

def distance(x, y, a, b):
    # 判斷滑鼠點選位置和氣球座標的距離
    return ((a - x) ** 2 + (b - y) ** 2) ** 0.5
def tap(x, y):
    for i in range(len(balloons)):
        # 判斷是否點選氣球佇列中的其中一個
        if distance(x, y, balloons[i][0], balloons[i][1]) < (size / 2):
            # 刪除氣球
            balloons.pop(i)
            return

效果:

原始碼在公眾號Python小二後臺回覆20220214獲取~

相關文章