原始碼:
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import turtle
import time
# 畫心形圓弧
def hart_arc():
for i in range(200):
turtle.right(1)
turtle.forward(2)
def move_pen_position(x, y):
turtle.hideturtle() # 隱藏畫筆(先)
turtle.up() # 提筆
turtle.goto(x, y) # 移動畫筆到指定起始座標(視窗中心為0,0)
turtle.down() # 下筆
turtle.showturtle() # 顯示畫筆
# 初始化
turtle.setup(width=800, height=500) # 視窗(畫布)大小
turtle.color('red', 'pink') # 畫筆顏色
turtle.pensize(3) # 畫筆粗細
turtle.speed(1) # 描繪速度
# 初始化畫筆起始座標
move_pen_position(x=0,y=-180) # 移動畫筆位置
turtle.left(140) # 向左旋轉140度
turtle.begin_fill() # 標記背景填充位置
# 畫心形直線( 左下方 )
turtle.forward(224) # 向前移動畫筆,長度為224
# 畫愛心圓弧
hart_arc() # 左側圓弧
turtle.left(120) # 調整畫筆角度
hart_arc() # 右側圓弧
# 畫心形直線( 右下方 )
turtle.forward(224)
turtle.end_fill() # 標記背景填充結束位置
# 點選視窗關閉程式
window = turtle.screen()
window.exitoncwnssxlick()
效果圖:
原始碼:import turtle as t
from time import sleep
def go_to(x, y):
t.up()
t.goto(x, y)
t.down()
def head(x, y, r):
go_to(x, y)
t.speed(20)
twnssx.circle(r)
leg(x, y)
def leg(x, y):
t.right(90)
t.forward(180)
t.right(30)
t.forward(100)
t.left(120)
go_to(x, y - 180)
t.forward(100)
t.right(120)
t.forward(100)
t.left(120)
hand(x, y)
def hand(x, y):
go_to(x, y - 60)
t.forward(100)
t.left(60)
t.forward(100)
go_to(x, y - 90)
t.right(60)
t.forward(100)
t.right(60)
t.forward(100)
t.left(60)
eye(x, y)
def eye(x, y):
go_to(x - 50, y + 130)
t.right(90)
t.forward(50)
go_to(x + 40, y + 130)
t.forward(50)程式設計客棧
t.left(90)
def big_circle(size):
t.speed(20)
for i in range(150):
t.forward(size)
t.right(0.3)
def line(size):
t.speed(20)
t.forward(51 * size)
def small_circle(size):
t.speed(20)
for i in range(210):
t.forward(size)
t.right(0.786)
def heart(x, y, size):
go_to(x, y)
t.left(150)
t.begin_fill()
line(size)
big_circle(size)
small_circle(size)
t.left(120)
small_circle(size)
big_circle(size)
line(size)
t.end_fill()
def main():
t.pensize(2)
t.color('red', 'pink')
head(-120, 100, 100)
heart(250, -80, 1)
go_to(100, -300)
t.write("to: 智慧型與美貌並存的", move=true, align="left", font=("楷體", 20, "normal"))
t.done()
main()
效果圖:
總結
純css畫一顆跳動的心
1.transition property 執行變換的屬性 2.transition duration 執行變換的時間 3.transition time function 執行變換的速率 4.transition delay 執行變換的延遲時間。1.animation name 規定需要繫結到選擇...
用Python畫一顆心 小人發射愛心(附原始碼)
本文出自 python為什麼 系列,歸檔在 github 上 毫無疑問,python 是一門強型別語言。強型別語言。強型別語言!關於強弱型別話題,推薦閱讀這篇 技術科普文 這就意味著,不同型別的物件通常需要先做顯式地型別轉化,然後才能進行某些操作。下面以字串和數字為例,看看強行操作會產生什麼結果 p...
未來還有一顆心
生活寫亂了很多,我們學會了忍耐,學會了哭泣,有人傷悲,也有人微笑,在這個世界,懂得的人很少,失去的人很多,我們承受很多的很多,錯過太多,太多,有多少人失去生命,就有幾代人必須失去生命,我們學會,我們失去,我們懂得,我們失去,在乙個世界,你有不知道的,也有做不到的,學會了別人的冷眼旁觀,學會了自己的孤...