Python+turtle绘制七夕表白玫瑰花

 更新时间:2022年08月01日 08:58:57   作者:阿黎逸阳  
七夕节,又称“七巧节”“女儿节”“乞巧节”等,是中国民间的传统节日。一年一度的七夕又快到了,用Python画一朵玫瑰花送给你的那个TA吧

中国情人节

七夕节,又称“七巧节”“女儿节”“乞巧节”等,是中国民间的传统节日。这个节日被赋予了“牛郎织女”的美丽爱情传说,被认为是中国最具浪漫色彩的传统节日,在当代更是产生了“中国情人节”的文化含义。

一年一度的七夕又快到了,用Python画一朵玫瑰花送给你的那个TA吧。

更多表白代码可以翻看表白合集中的文章,可以边听音乐边看Python代码图。

一、绘制结果

1. 玫瑰花1

2. 玫瑰花2

二、画玫瑰花代码

1. 用turtle库画一朵玫瑰花版本1

# -*- coding: UTF-8 -*-
'''
代码用途 :画玫瑰花
作者     :阿黎逸阳
博客     :  https://blog.csdn.net/qq_32532663/article/details/106176609
'''

#绘制玫瑰花并添加文字
import turtle 
# 设置画布大小
# turtle.screensize(canvwidth=None, canvheight=None, bg=None)
turtle.setup(width=0.6, height=0.6)
# 设置初始位置
turtle.penup()
turtle.left(90)
turtle.fd(200)
turtle.pendown()
turtle.right(90)
 
# 输出文字
printer = turtle.Turtle()
printer.hideturtle()
printer.penup()
printer.back(200)
printer.write("赠给亲爱的 XX\n\n", align="right", font=("楷体", 16, "bold"))
printer.write("from XXX", align="center", font=("楷体", 12, "normal"))
 
# 花蕊
turtle.fillcolor("red")
turtle.begin_fill()
turtle.circle(10, 180)
turtle.circle(25, 110)
turtle.left(50)
turtle.circle(60, 45)
turtle.circle(20, 170)
turtle.right(24)
turtle.fd(30)
turtle.left(10)
turtle.circle(30, 110)
turtle.fd(20)
turtle.left(40)
turtle.circle(90, 70)
turtle.circle(30, 150)
turtle.right(30)
turtle.fd(15)
turtle.circle(80, 90)
turtle.left(15)
turtle.fd(45)
turtle.right(165)
turtle.fd(20)
turtle.left(155)
turtle.circle(150, 80)
turtle.left(50)
turtle.circle(150, 90)
turtle.end_fill()
 
# 花瓣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)
 
# 叶子2
turtle.right(90)
turtle.right(45)
turtle.fillcolor("green")
turtle.begin_fill()
turtle.circle(80, 90)
turtle.left(90)
turtle.circle(80, 90)
turtle.end_fill()
turtle.left(135)
turtle.fd(60)
turtle.left(180)
turtle.fd(60)
turtle.right(90)
turtle.circle(200, 60)
 
turtle.done()

效果图

2. 用turtle库画一朵玫瑰花版本2

# -*- coding: UTF-8 -*-
'''
代码用途 :画玫瑰花
作者     :阿黎逸阳
博客     :  https://blog.csdn.net/qq_32532663/article/details/106176609
'''
import os
import time
import pygame
import turtle as t 

#播放音乐
print('播放音乐')
pygame.mixer.init()
pygame.mixer.music.load(r"F:\公众号\62.玫瑰花\Eran - 春の思い出.mp3") 
pygame.mixer.music.set_volume(0.5) 
pygame.mixer.music.play(1, 10)

t.title('阿黎逸阳的代码公众号')
t.speed(3)
t.setup(startx=0, starty = 0, width=800, height = 600)
#画爱心
def red_heart():
    t.penup()
    t.goto(0, 200)
    t.pendown()
    t.pensize(2)
    t.color('black', 'red')   
    t.begin_fill()
    t.setheading(110)
    t.circle(30, 150)
    t.left(15)
    t.circle(50, 70)
    t.circle(-50, 30)
    t.left(100)
    t.circle(-50, 30)
    t.right(10)
    t.circle(50, 70)
    t.left(5)
    t.circle(29, 175)
    t.end_fill()
def top_arc():
    #画花上面的部分
    t.penup()
    t.goto(18, 224)
    t.pendown()
    t.begin_fill()
    t.setheading(125)
    t.pensize(2)
    t.color('black', 'red')
    t.circle(25, 125)
    t.color('red')
    t.circle(25, 360-125)
    t.end_fill()
def under_arc():
    #画下弧线
    t.penup()
    t.goto(-58, 190)
    t.pendown()
    t.begin_fill()
    t.color('black', 'red')
    t.setheading(290)
    t.circle(-120, 50)
    t.circle(60, 120)
    t.setheading(-10)
    t.circle(60, 120)
    t.left(4)
    t.circle(-120, 50)
    t.end_fill()
def stamen():
    #画花蕊
    t.penup()
    t.goto(0, 185)
    t.pendown()
    t.setheading(90)
    t.circle(5, 270)
    t.right(5)
    t.circle(100, 8)
    #t.right(10)
    t.circle(10, 180)
    t.circle(100, 8)
    t.right(10)
    t.circle(15, 160)
    t.circle(80, 5)
    t.right(34)
    t.circle(-30, 80)
    #画花身
    t.right(10)
    t.circle(100, 82)
    #画竖线
    t.penup()
    t.goto(-10, 183)
    t.pendown()
    t.setheading(-90)
    t.forward(15)
    t.penup()
    t.goto(-21, 179)
    t.pendown()
    t.setheading(-90)
    t.forward(25)
    t.penup()
    t.goto(18, 185)
    t.pendown()
    t.setheading(-90)
    t.forward(29)
print('画心')
red_heart()
print('画顶部弧线')
top_arc()
print('画下弧线')
under_arc()
print('画心')
red_heart()
print('画花蕊')
stamen() 
# 写文字
t.hideturtle()
t.penup()
t.goto(-200, -200)
t.pendown()
t.write("赠给亲爱的 XX\n\n", align="right", font=("楷体", 16, "bold"))
t.penup()
t.goto(-200, -200)
t.pendown()
t.write("from XXX", align="right", font=("楷体", 12, "normal"))

效果视频

到此这篇关于Python+turtle绘制七夕表白玫瑰花的文章就介绍到这了,更多相关Python turtle玫瑰花内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • python在屏幕上点击特定按钮或图像效果实例

    python在屏幕上点击特定按钮或图像效果实例

    这篇文章主要给大家介绍了关于python在屏幕上点击特定按钮或图像效果的相关资料,文中通过实例代码介绍的非常详细,对大家学习或者使用python具有一定的参考学习价值,需要的朋友可以参考下
    2022-09-09
  • python 添加环境变量及配置方法

    python 添加环境变量及配置方法

    这篇文章主要介绍了python 添加环境变量的相关知识,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2023-07-07
  • 如何使用 Python和 FFmpeg 批量截图视频到各自文件夹中

    如何使用 Python和 FFmpeg 批量截图视频到各自文件夹中

    wxPython 提供了一个简单易用的界面,而 FFmpeg 则负责处理视频帧的提取,这个工具不仅对视频编辑工作有帮助,也为批量处理视频文件提供了极大的便利,这篇文章主要介绍了使用 Python和 FFmpeg 批量截图视频到各自文件夹中,需要的朋友可以参考下
    2024-08-08
  • Python实现图片和base64转换详解

    Python实现图片和base64转换详解

    这篇文章主要介绍了Python实现图片和base64转换详解,Base64是一种二进制到文本的编码方式,如果要更具体一点的话,可以认为它是一种将 byte数组编码为字符串的方法,而且编码出的字符串只包含ASCII基础字符,需要的朋友可以参考下
    2024-01-01
  • Python+Kepler.gl轻松制作酷炫路径动画的实现示例

    Python+Kepler.gl轻松制作酷炫路径动画的实现示例

    这篇文章主要介绍了Python+Kepler.gl轻松制作酷炫路径动画的实,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧现示例
    2020-06-06
  • python实现K近邻回归,采用等权重和不等权重的方法

    python实现K近邻回归,采用等权重和不等权重的方法

    今天小编就为大家分享一篇python实现K近邻回归,采用等权重和不等权重的方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2019-01-01
  • Python打包文件执行报错:ModuleNotFoundError: No module named ‘pymssql‘的解决方法

    Python打包文件执行报错:ModuleNotFoundError: No module 

    这篇文章给大家介绍了Python打包文件执行报错:ModuleNotFoundError: No module named ‘pymssql‘的解决方法,如果有遇到相同问题的朋友可以参考阅读一下本文
    2023-10-10
  • 解决django.db.utils.IntegrityError:(1048, Column last_login cannot be null)

    解决django.db.utils.IntegrityError:(1048, Column las

    这篇文章主要介绍了解决django.db.utils.IntegrityError:(1048, Column last_login cannot be null)问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
    2024-01-01
  • 详解Python流程控制语句

    详解Python流程控制语句

    这篇文章主要介绍了Python流程控制语句的的相关资料,帮助大家更好的理解和学习python,感兴趣的朋友可以了解下
    2020-10-10
  • Python调用百度AI实现图片上表格识别功能

    Python调用百度AI实现图片上表格识别功能

    这篇文章主要给大家介绍了关于Python调用百度AI实现图片上表格识别功能的相关资料,在Python环境下,利用百度AI开放平台文字识别技术,对表格类图片进行识别,需要的朋友可以参考下
    2021-09-09

最新评论