python程序员的浪漫
# _*_coding:utf-8_*_ # created by cy on 2022/12/16 import turtle as t import time import math as m import random as r # 设置画布 t.setup(1.0, 1.0) # todo 此处可以设置窗体的大小比例 t.bgcolor('white') # 设置背景色 t.title('生日快乐!') # 设置窗口的标题 # todo 此处可以设置绘图速度 t.speed(2) # 速度 t.delay(2) # 延迟 # t.tracer(False) # 一次性出图,便于调试程序使用 t.shape('turtle') # 设置画笔形状 # 称呼 t.penup() t.goto(-500, 250) msg = '昵称' # todo 此处可以修改昵称 for i in msg: t.color('green') t.write(i, True, align='left', font=('方正舒体', 70, 'normal')) time.sleep(0.3) # 大熊 # 左耳 t.color('black') t.penup() t.goto(-150, 200) t.setheading(160) t.begin_fill() t.pendown() t.circle(-30, 230) t.setheading(180) t.circle(37, 90) t.end_fill() # 右耳 t.penup() t.goto(60, 200) t.setheading(20) t.begin_fill() t.pendown() t.circle(30, 230) t.setheading(0) t.circle(-37, 90) t.end_fill() # 头 t.pensize(5) t.penup() t.goto(-113, 237) t.setheading(30) t.pendown() t.circle(-134, 60) t.penup() t.goto(-150, 200) t.setheading(-120) t.pendown() t.circle(200, 80) t.penup() t.goto(60, 200) t.setheading(-60) t.pendown() t.circle(-200, 80) t.penup() t.setheading(210) t.pendown() t.circle(-120, 60) # 左眼 t.speed(10) t.delay(1) # 眼圈 t.penup() t.goto(-140, 100) t.setheading(-45) t.begin_fill() t.pendown() a = 0.2 for i in range(120): if 0 <= i < 30 or 60 <= i < 90: a = a + 0.1 t.lt(3) # 向左转3度 t.fd(a) # 向前走a的步长 else: a = a - 0.1 t.lt(3) t.fd(a) t.end_fill() # 眼白 t.fillcolor("white") t.penup() t.goto(-103, 125) t.setheading(0) t.begin_fill() t.pendown() t.circle(14, 360) t.end_fill() # 眼珠 t.penup() t.goto(-102, 133) t.setheading(0) t.begin_fill() t.pendown() t.circle(6, 360) t.end_fill() # 右眼 # 眼圈 t.penup() t.goto(50, 100) t.setheading(45) t.fillcolor("black") t.pencolor("black") t.begin_fill() t.pendown() a = 0.2 for i in range(120): if 0 <= i < 30 or 60 <= i < 90: a = a + 0.1 t.lt(3) # 向左转3度 t.fd(a) # 向前走a的步长 else: a = a - 0.1 t.lt(3) t.fd(a) t.end_fill() # 眼白 t.fillcolor("white") t.penup() t.goto(13, 125) t.setheading(0) t.begin_fill() t.pendown() t.circle(14, 360) t.end_fill() # 眼珠 t.penup() t.goto(12, 133) t.setheading(0) t.begin_fill() t.pendown() t.circle(6, 360) t.end_fill() # 鼻子 t.speed(2) t.delay(2) t.pencolor("black") t.fillcolor("black") t.penup() t.goto(-55, 133) t.begin_fill() t.pendown() t.fd(20) t.seth(-120) t.fd(20) t.seth(120) t.fd(20) t.end_fill() # 嘴 t.penup() t.goto(-70, 110) t.setheading(-30) t.fillcolor("red") t.begin_fill() t.pendown() t.circle(50, 60) t.setheading(-120) t.circle(-100, 15) t.circle(-15, 90) t.circle(-100, 15) t.end_fill() # 四肢 # 左臂 t.penup() t.goto(-175, 100) t.fillcolor("black") t.begin_fill() t.setheading(-120) t.pendown() t.fd(100) t.setheading(-110) t.circle(20, 180) t.fd(30) t.circle(-5, 160) t.end_fill() # 右臂 t.penup() t.goto(85, 100) t.setheading(60) t.begin_fill() t.pendown() t.fd(100) t.setheading(70) t.circle(20, 180) t.fd(30) t.circle(-5, 160) t.end_fill() # 小红心 t.penup() t.pencolor("red") t.fillcolor('red') t.goto(105, 200) t.begin_fill() t.pendown() t.circle(-5, 180) t.setheading(90) t.circle(-5, 180) t.setheading(-120) t.fd(17) t.penup() t.goto(105, 200) t.pendown() t.setheading(-60) t.fd(17) t.end_fill() t.pencolor("black") t.fillcolor("black") # 左腿 t.penup() t.goto(-120, -45) t.begin_fill() t.pendown() t.setheading(-90) t.circle(-140, 20) t.circle(5, 109) t.fd(30) t.circle(10, 120) t.setheading(90) t.circle(-140, 10) t.end_fill() # 右腿 t.penup() t.goto(30, -45) t.begin_fill() t.pendown() t.setheading(-90) t.circle(140, 20) t.circle(-5, 109) t.fd(30) t.circle(-10, 120) t.setheading(90) t.circle(140, 10) t.end_fill() # 冰糖外壳 t.pensize(3) t.penup() t.goto(-160, 195) t.setheading(160) t.pendown() t.circle(-40, 230) t.setheading(30) t.circle(-134, 58) t.setheading(60) t.circle(-40, 215) t.setheading(-60) t.fd(15) t.circle(2, 200) t.setheading(65) t.fd(30) t.circle(-25, 180) t.fd(100) t.circle(2, 25) t.circle(-200, 47) t.circle(2, 60) t.circle(140, 23) t.circle(-2, 90) t.setheading(180) t.fd(70) t.circle(-2, 90) t.fd(30) t.setheading(-160) t.circle(-100, 35) t.setheading(-90) t.fd(30) t.circle(-2, 90) t.fd(70) t.circle(-2, 90) t.setheading(60) t.circle(140, 30) t.circle(2, 45) t.circle(-200, 19) t.circle(2, 130) t.fd(30) t.circle(-25, 180) t.fd(100) t.setheading(90) t.circle(-200, 30) # 冰糖面罩 t.speed(1) t.delay(0) t.pensize(3) t.penup() t.goto(65, 120) t.setheading(90) t.pendown() t.pencolor("red") a = 1 for i in range(120): if 0 <= i < 30 or 60 <= i < 90: # 控制a的变化 a = a + 0.25 t.lt(3) # 向左转3度 t.fd(a) # 向前走a的步长 else: a = a - 0.25 t.lt(3) t.fd(a) t.pencolor("orange") t.penup() t.goto(66, 120) t.pendown() a = 1 for i in range(120): if 0 <= i < 30 or 60 <= i < 90: a = a + 0.255 t.lt(3) t.fd(a) else: a = a - 0.255 t.lt(3) t.fd(a) t.pencolor("green") t.penup() t.goto(67, 120) t.pendown() a = 1 for i in range(120): if 0 <= i < 30 or 60 <= i < 90: a = a + 0.2555 t.lt(3) t.fd(a) else: a = a - 0.2555 t.lt(3) t.fd(a) t.pencolor("deep sky blue") t.penup() t.goto(68, 120) t.pendown() a = 1 for i in range(120): if 0 <= i < 30 or 60 <= i < 90: a = a + 0.25955 t.lt(3) t.fd(a) else: a = a - 0.25955 t.lt(3) t.fd(a) t.pencolor("pink") t.penup() t.goto(71, 120) t.pendown() a = 1 for i in range(120): if 0 <= i < 30 or 60 <= i < 90: a = a + 0.26 t.lt(3) t.fd(a) else: a = a - 0.26 t.lt(3) t.fd(a) t.pencolor("purple") t.penup() t.goto(72, 120) t.pendown() a = 1 for i in range(120): if 0 <= i < 30 or 60 <= i < 90: a = a + 0.269 t.lt(3) t.fd(a) else: a = a - 0.269 t.lt(3) t.fd(a) # 五环 t.penup() t.goto(-55, -10) t.pendown() t.pencolor("blue") t.circle(10) t.penup() t.goto(-40, -10) t.pendown() t.pencolor("black") t.circle(10) t.penup() t.goto(-25, -10) t.pendown() t.pencolor("red") t.circle(10) t.penup() t.goto(-50, -20) t.pendown() t.pencolor("yellow") t.circle(10) t.penup() t.goto(-30, -20) t.pendown() t.pencolor("green") t.circle(10) # HappyBirthday t.speed(2) t.delay(2) def move(angle, length): t.penup() t.seth(angle) t.fd(length) # prepare t.penup() t.fd(-180) t.seth(90) # 画笔方向 # t.fd(50) t.pendown() t.pensize(10) t.pencolor("green") t.seth(0) t.hideturtle() t.speed(5) # 呀 t.fd(100) # 生 t.pencolor("green") t.circle(50, 90) t.circle(50, -30) t.seth(0) t.fd(100) t.fd(-50) t.left(90) t.fd(30) t.fd(-60) t.left(90) t.fd(50) t.fd(-100) t.fd(50) t.left(90) t.fd(50) t.right(90) t.fd(60) t.fd(-120) # 日 t.penup() t.fd(-30) t.pendown() t.seth(90) t.fd(100) t.seth(0) t.fd(70) t.seth(-90) t.fd(50) t.seth(180) t.fd(70) t.seth(-90) t.fd(50) t.seth(0) t.fd(70) t.seth(90) t.fd(50) # 移动 move(0, 30) # 快 t.pensize(8) t.circle(30, 15) t.pendown() t.circle(30, 60) t.penup() t.seth(0) t.fd(13) t.seth(90) t.pendown() t.fd(40) t.fd(-50) t.penup() t.seth(0) t.fd(13) t.pendown() t.seth(-180) t.circle(20, -90) t.circle(20, 90) t.penup() t.fd(13) t.pendown() t.seth(-90) t.fd(60) move(0, 40) move(90, 80) t.pendown() t.seth(0) t.fd(30) t.seth(90) t.fd(30) t.fd(-30) t.seth(0) t.fd(20) t.seth(-90) t.fd(35) t.seth(0) t.fd(10) t.fd(-30) t.seth(90) t.fd(35) t.fd(-35) t.seth(0) t.fd(-25) move(-90, 50) move(180, 25) t.pendown() t.seth(0) t.penup() t.circle(50, 20) t.pendown() t.circle(50, 70) t.seth(-90) t.circle(50, 60) # 移动 move(0, 50) move(90, 45) # 乐 t.pensize(10) t.pendown() t.fd(40) t.seth(0) t.circle(50, 60) t.circle(50, -25) move(-90, 15) t.pendown() t.fd(30) t.seth(0) t.fd(-25) t.fd(65) t.fd(-40) t.seth(-90) t.fd(60) t.seth(135) t.fd(20) move(135, 10) t.pendown() t.seth(-135) t.fd(20) move(0, 70) t.pendown() t.seth(135) t.fd(20) # 署名 t.penup() t.goto(450, -350) msg = '—小 y' # todo 此处可以修改你的署名 for i in msg: t.color('green') t.write(i, True, align='left', font=('JetBrains Moon', 45, 'normal')) time.sleep(0.3) t.clear() # 清屏 time.sleep(3) # 让程序休眠3秒,休息3秒后开始绘制生日蛋糕 # 开始绘制生日蛋糕 t.speed(2) t.delay(0) def drawx(a, i): angle = m.radians(i) return a * m.cos(angle) def drawy(b, i): angle = m.radians(i) return b * m.sin(angle) # 设置背景颜色,窗口位置以及大小 t.bgcolor("#d3dae8") t.speed(10) t.pensize(1) t.penup() t.goto(150, 0) t.pendown() # 1 t.pencolor("white") t.begin_fill() for i in range(360): x = drawx(150, i) y = drawy(60, i) t.goto(x, y) t.fillcolor("#fef5f7") t.end_fill() # 2 t.begin_fill() for i in range(180): x = drawx(150, -i) y = drawy(70, -i) t.goto(x, y) for i in range(180, 360): x = drawx(150, i) y = drawy(60, i) t.goto(x, y) t.fillcolor("#f2d7dd") t.end_fill() # 3 t.pu() t.goto(120, 0) t.pd() t.begin_fill() for i in range(360): x = drawx(120, i) y = drawy(48, i) t.goto(x, y) t.fillcolor("#cbd9f9") t.end_fill() # 4 t.begin_fill() t.pencolor("#fee48c") for i in range(540): x = drawx(120, i) y = drawy(48, i) + 70 t.goto(x, y) t.goto(-120, 0) t.fillcolor("#cbd9f9") t.end_fill() # 5 t.pu() t.goto(120, 70) t.pd() t.pencolor("#fff0f3") t.begin_fill() for i in range(360): x = drawx(120, i) y = drawy(48, i) + 70 t.goto(x, y) t.fillcolor("#fff0f3") t.end_fill() # 6 t.pu() t.goto(110, 70) t.pd() t.pencolor("#fff9fb") t.begin_fill() for i in range(360): x = drawx(110, i) y = drawy(44, i) + 70 t.goto(x, y) t.fillcolor("#fff9fb") t.end_fill() # 7 t.pu() t.goto(120, 0) t.pd() t.begin_fill() t.pencolor("#ffa79d") for i in range(180): x = drawx(120, -i) y = drawy(48, -i) + 10 t.goto(x, y) t.goto(-120, 0) for i in range(180, 360): x = drawx(120, i) y = drawy(48, i) t.goto(x, y) t.fillcolor("#ffa79d") t.end_fill() # 8 t.pu() t.goto(120, 70) t.pd() t.begin_fill() t.pensize(4) t.pencolor("#fff0f3") for i in range(1800): x = drawx(120, 0.1 * i) y = drawy(-18, i) + 10 t.goto(x, y) t.goto(-120, 70) t.pensize(1) for i in range(180, 360): x = drawx(120, i) y = drawy(48, i) + 70 t.goto(x, y) t.fillcolor("#fff0f3") t.end_fill() # 9 t.pu() t.goto(80, 70) t.pd() t.begin_fill() t.pencolor("#6f3732") t.goto(80, 120) for i in range(180): x = drawx(80, i) y = drawy(32, i) + 120 t.goto(x, y) t.goto(-80, 70) for i in range(180, 360): x = drawx(80, i) y = drawy(32, i) + 70 t.goto(x, y) t.fillcolor("#6f3732") t.end_fill() # 10 t.pu() t.goto(80, 120) t.pd() t.pencolor("#ffaaa0") t.begin_fill() for i in range(360): x = drawx(80, i) y = drawy(32, i) + 120 t.goto(x, y) t.fillcolor("#ffaaa0") t.end_fill() # 11 t.pu() t.goto(70, 120) t.pd() t.pencolor("#ffc3be") t.begin_fill() for i in range(360): x = drawx(70, i) y = drawy(28, i) + 120 t.goto(x, y) t.fillcolor("#ffc3be") t.end_fill() # 12 t.pu() t.goto(80, 120) t.pd() t.begin_fill() t.pensize(3) t.pencolor("#ffaaa0") for i in range(1800): x = drawx(80, 0.1 * i) y = drawy(-12, i) + 80 t.goto(x, y) t.goto(-80, 120) t.pensize(1) for i in range(180, 360): x = drawx(80, i) y = drawy(32, i) + 120 t.goto(x, y) t.fillcolor("#ffaaa0") t.end_fill() # 13 t.pu() t.goto(64, 120) t.pd() t.pencolor("#b1c9e9") t.begin_fill() for i in range(360): x = drawx(4, i) + 60 y = drawy(1, i) + 120 t.goto(x, y) t.goto(64, 170) for i in range(540): x = drawx(4, i) + 60 y = drawy(1, i) + 170 t.goto(x, y) t.goto(56, 120) t.fillcolor("#b1c9e9") t.end_fill() t.pencolor("white") t.pensize(2) for i in range(1, 6): t.goto(64, 120 + 10 * i) t.pu() t.goto(56, 120 + 10 * i) t.pd() t.pu() t.goto(60, 170) t.pd() t.goto(60, 180) t.pensize(1) # t.pu() t.goto(64, 190) t.pd() t.pencolor("#f1add1") t.begin_fill() for i in range(360): x = drawx(4, i) + 60 y = drawy(10, i) + 190 t.goto(x, y) t.fillcolor("#f1add1") t.end_fill() # 14 t.pu() t.goto(-56, 120) t.pd() t.pencolor("#b1c9e9") t.begin_fill() for i in range(360): x = drawx(4, i) - 60 y = drawy(1, i) + 120 t.goto(x, y) t.goto(-56, 170) for i in range(540): x = drawx(4, i) - 60 y = drawy(1, i) + 170 t.goto(x, y) t.goto(-64, 120) t.fillcolor("#b1c9e9") t.end_fill() t.pencolor("white") t.pensize(2) for i in range(1, 6): t.goto(-56, 120 + 10 * i) t.pu() t.goto(-64, 120 + 10 * i) t.pd() t.pu() t.goto(-60, 170) t.pd() t.goto(-60, 180) t.pensize(1) # t.pu() t.goto(-56, 190) t.pd() t.pencolor("#f1add1") t.begin_fill() for i in range(360): x = drawx(4, i) - 60 y = drawy(10, i) + 190 t.goto(x, y) t.fillcolor("#f1add1") t.end_fill() # 15 t.pu() t.goto(0, 130) t.pd() t.pencolor("#b1c9e9") t.begin_fill() for i in range(360): x = drawx(4, i) y = drawy(1, i) + 130 t.goto(x, y) t.goto(4, 180) for i in range(540): x = drawx(4, i) y = drawy(1, i) + 180 t.goto(x, y) t.goto(-4, 130) t.fillcolor("#b1c9e9") t.end_fill() t.pencolor("white") t.pensize(2) for i in range(1, 6): t.goto(4, 130 + 10 * i) t.pu() t.goto(-4, 130 + 10 * i) t.pd() t.pu() t.goto(0, 180) t.pd() t.goto(0, 190) t.pensize(1) # t.pu() t.goto(4, 200) t.pd() t.pencolor("#f1add1") t.begin_fill() for i in range(360): x = drawx(4, i) y = drawy(10, i) + 200 t.goto(x, y) t.fillcolor("#f1add1") t.end_fill() # 16 t.pu() t.goto(30, 110) t.pd() t.pencolor("#b1c9e9") t.begin_fill() for i in range(360): x = drawx(4, i) + 30 y = drawy(1, i) + 110 t.goto(x, y) t.goto(34, 160) for i in range(540): x = drawx(4, i) + 30 y = drawy(1, i) + 160 t.goto(x, y) t.goto(26, 110) t.fillcolor("#b1c9e9") t.end_fill() t.pencolor("white") t.pensize(2) for i in range(1, 6): t.goto(34, 110 + 10 * i) t.pu() t.goto(26, 110 + 10 * i) t.pd() t.pu() t.goto(30, 160) t.pd() t.goto(30, 170) t.pensize(1) # t.pu() t.goto(34, 180) t.pd() t.pencolor("#f1add1") t.begin_fill() for i in range(360): x = drawx(4, i) + 30 y = drawy(10, i) + 180 t.goto(x, y) t.fillcolor("#f1add1") t.end_fill() # 17 t.pu() t.goto(-30, 110) t.pd() t.pencolor("#b1c9e9") t.begin_fill() for i in range(360): x = drawx(4, i) - 30 y = drawy(1, i) + 110 t.goto(x, y) t.goto(-26, 160) for i in range(540): x = drawx(4, i) - 30 y = drawy(1, i) + 160 t.goto(x, y) t.goto(-34, 110) t.fillcolor("#b1c9e9") t.end_fill() t.pencolor("white") t.pensize(2) for i in range(1, 6): t.goto(-26, 110 + 10 * i) t.pu() t.goto(-34, 110 + 10 * i) t.pd() t.pu() t.goto(-30, 160) t.pd() t.goto(-30, 170) t.pensize(1) # t.pu() t.goto(-26, 180) t.pd() t.pencolor("#f1add1") t.begin_fill() for i in range(360): x = drawx(4, i) - 30 y = drawy(10, i) + 180 t.goto(x, y) t.fillcolor("#f1add1") t.end_fill() # 随机 color = ["#e28cb9", "#805a8c", "#eaa989", "#6e90b7", "#b8b68f", "#e174b5", "#cf737c", "#7c8782"] for i in range(80): t.pu() x = r.randint(-120, 120) y = r.randint(-25, 30) t.goto(x, y) t.pd() t.dot(r.randint(2, 5), color[r.randint(0, 7)]) for i in range(40): t.pu() x = r.randint(-90, 90) y = r.randint(-35, 10) t.goto(x, y) t.pd() t.dot(r.randint(2, 5), color[r.randint(0, 7)]) for i in range(40): t.pu() x = r.randint(-80, 80) y = r.randint(60, 90) t.goto(x, y) t.pd() t.dot(r.randint(2, 5), color[r.randint(0, 7)]) for i in range(30): t.pu() x = r.randint(-50, 50) y = r.randint(45, 70) t.goto(x, y) t.pd() t.dot(r.randint(2, 5), color[r.randint(0, 7)]) for i in range(50): t.pu() x = r.randint(-500, 500) y = r.randint(120, 300) t.goto(x, y) t.pd() t.dot(r.randint(3, 5), color[r.randint(0, 7)]) t.seth(90) t.pu() t.goto(0, 0) t.fd(210) t.left(90) t.fd(170) t.pd() t.write("Happy Birthday", font=("Curlz MT", 50)) # todo 此处可以修改画完蛋糕以后显示的文字 t.done()
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998相关知识
【Python表白系列】用代码画玫瑰花,属于程序员的浪漫告白(完整代码)
程序员的浪漫:用代码写情书,用算法表白
python程序员实现表白代码的案例
程序员的浪漫!用Python实现表白代码!
程序员还是有经验的好
七夕到了——属于Python的浪漫,拿去吧~ 祝表白成功
前端程序员如何浪漫求婚
七夕——程序员独有的表白方式
python 玫瑰花程序
python玫瑰花代码讲解
网址: python程序员的浪漫 https://www.huajiangbk.com/newsview1091776.html
上一篇: 友情常用送花祝福语精选 |
下一篇: 顶流“花花”姐妹4岁啦!粉丝通宵 |
推荐分享

- 1君子兰什么品种最名贵 十大名 4012
- 2世界上最名贵的10种兰花图片 3364
- 3花圈挽联怎么写? 3286
- 4迷信说家里不能放假花 家里摆 1878
- 5香山红叶什么时候红 1493
- 6花的意思,花的解释,花的拼音 1210
- 7教师节送什么花最合适 1167
- 8勿忘我花图片 1103
- 9橄榄枝的象征意义 1093
- 10洛阳的市花 1039