用python 的turtle库画哆啦A梦和皮卡丘顺便加个背景音乐

2023-12-16 18:10

本文主要是介绍用python 的turtle库画哆啦A梦和皮卡丘顺便加个背景音乐,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

python 的turtle库画哆啦A梦和皮卡丘顺便加个背景音乐
1、插入背景音乐需要下面的代码以及还要安装pygame库,安装的具体方法白度,完整的代码在下面。
在这里插入图片描述

import pygame
file=r'D:\新建文件夹\瓢三爷的小喇叭 - 哆啦A梦主题曲-唢呐改编版(翻自 東京プリン).mp3'
pygame.mixer.init()
track=pygame.mixer.music.load(file)
pygame.mixer.music.play()

2、下面的是完整的代码,导入背景音乐需要安装pygame库

from turtle import *
import pygame
file=r'D:\新建文件夹\瓢三爷的小喇叭 - 哆啦A梦主题曲-唢呐改编版(翻自 東京プリン).mp3'
pygame.mixer.init()
track=pygame.mixer.music.load(file)
pygame.mixer.music.play()
bgcolor(1,0.5,1)
pencolor('white')
penup()
goto(-220,50)
pendown()
write('加载背景音乐',font=('Arial Narrow',20,'italic'))
penup()
goto(-180,-80)
circle(5,5400)
pendown()
write('下面开始画了',font=('Arial Narrow',50))
penup()
circle(20,720)
pendown()
bgcolor('white')
reset()
#--------------------------------from turtle import *
pensize(3)
speed(1)
#画笔跳跃函数块
def my_goto(x,y):penup()goto(x,y)pendown()pass
#画鼻子
#眼睛
def eyes():a=2.5fillcolor('white')begin_fill()tracer(False)for i in range(120):if 0<=i<30 or 60<=i<90:a-=0.05fd(a)lt(3)passelse:a+=0.05fd(a)lt(3)passpasstracer(True)end_fill()pass
#头部
def head():fillcolor(0.3, 0.65, 0.8)begin_fill()seth(30)circle(120, 300)goto(0, 0)end_fill()fillcolor('red')begin_fill()lt(30)fd(12)circle(-6, 180)fd(140)circle(-6, 180)fd(140)end_fill()lt(180)fd(20)lt(-150)fillcolor('white')begin_fill()circle(90, 120)lt(30)fd(100)lt(30)circle(90, 120)end_fill()head()#画头部
my_goto(-5,155)
seth(95)
eyes()#画眼睛
my_goto(-65,155)
eyes()#画眼睛
my_goto(-49.5,115)
fillcolor('red')
begin_fill()
circle(15,630)#画鼻子
end_fill()
setheading(270)
fd(80)
setheading(360)
circle(100,50)#画嘴巴
my_goto(-62,20)
setheading(180)
circle(-100,45)
my_goto(-50,90)
setheading(370)
fd(60)#画胡须
my_goto(-50,80)
setheading(360)
fd(70)
my_goto(-50,70)
setheading(350)
fd(60)
my_goto(-75,90)
setheading(170)
fd(60)
my_goto(-75,80)
setheading(180)
fd(70)
my_goto(-75,70)
setheading(190)
fd(60)
#画身体
my_goto(0,0)
fillcolor(0.3, 0.65, 0.8)
begin_fill()
setheading(390)
fd(80)
setheading(90)
circle(-25,280)#画手
setheading(230)
fd(75)
setheading(-270)
fd(15)
setheading(270)
fd(20)
tracer(False)
b=1
for item in range(150):if 0<=item<100:fd(b)     right(0.1)else:fd(b)lt(0.1)passpass
tracer(True)
setheading(180)
fd(55)#画脚
setheading(90)
circle(30,180)
setheading(180)
fd(55)
setheading(90)
tracer(False)
c=1
for j in range(90):if 0<=j<70:fd(c)lt(0.1)else:fd(c)right(0.1)passpass
fd(20)
setheading(90)
fd(20)
setheading(270)
fd(10)
setheading(180+25)
fd(20)
setheading(-90)
circle(-25,260)
setheading(40)
fd(85)
setheading(-45)
fd(10)
setheading(360)
fd(140)
circle(6,180)
goto(0,0)
tracer(True)
end_fill()
#画肚子
fillcolor(1,1,1)
begin_fill()
my_goto(-17,-15)
setheading(330)
circle(-77,300)
goto(-17,-15)
end_fill()
#画肚兜
my_goto(0,-85)
setheading(270)
circle(-56,180)
setheading(360)
fd(112)
#重新画身体的残缺部分
my_goto(0,0)
setheading(390)
fd(80)
setheading(90)
fillcolor(1, 1, 1)
begin_fill()
circle(-25,280)
end_fill()
setheading(230)
fd(75)
setheading(-270)
fd(15)
setheading(270)
fd(20)
tracer(False)
b=1
for item in range(150):if 0<=item<100:fd(b)right(0.1)else:fd(b)lt(0.1)passpass
tracer(True)
setheading(360)
fd(10)
circle(-10,180)
fd(75)
circle(-10,180) 
fd(10)
setheading(90)
circle(30,180)
setheading(360)
fd(10)
circle(-10,180)
fd(75)
circle(-10,180)
fd(10)
setheading(90)
tracer(False)
c=1
for j in range(90):if 0<=j<70:fd(c)lt(0.1)    else:fd(c)right(0.1)passpass
tracer(True)
fd(20)
setheading(90)
fd(20)
setheading(270)
fd(10)
setheading(205)
fd(20)
setheading(-90)
fillcolor(1,1,1)
begin_fill()
circle(-25,620)
end_fill()
setheading(40)
fd(83)
setheading(-45)
fd(10)
setheading(360)
fd(70)
penup()
setheading(90)
fd(5)
pendown()
setheading(-180)
fillcolor('yellow')
begin_fill()
circle(12,435)
end_fill()
pensize(2)
setheading(90)
fd(3)
circle(2,180)
setheading(360)
fillcolor('yellow')
begin_fill()
fd(29)
circle(-2,180)
fd(31)
end_fill()
setheading(360)
fd(5)
setheading(270)
circle(12,100)
setheading(90)
pensize(4)
fd(5)
pensize(1)
fillcolor(0,0,0)
begin_fill()
setheading(400)
circle(2)
end_fill()
setheading(90)
my_goto(-40,160)
setheading(200)
fillcolor(0,0,0)
begin_fill()
d=0.1
tracer(False)
setheading(190)
for k in range(120):if 0<=k<30 or 60<=k<90:d+=0.02fd(d)lt(2.9)passelse:d-=0.02fd(d)lt(2.9)passpass
tracer(True)
end_fill()
setheading(230)
penup()
fd(5)
pendown()
fillcolor(1,1,1)
begin_fill()
circle(3)
end_fill()
my_goto(-90,160)
fillcolor(0,0,0)
begin_fill()
d=0.1
tracer(False)
setheading(190)
for k in range(120):if 0<=k<30 or 60<=k<90:d+=0.02fd(d)lt(2.9)passelse:d-=0.02fd(d)lt(2.9)passpass
tracer(True)
end_fill()
setheading(270)
fd(5)
fillcolor(1,1,1)
setheading(230)
begin_fill()
circle(3)
end_fill()
hideturtle()
circle(3,1440)
reset()
#-------------------------------------------------皮卡丘-----------------------------------------
# coding:utf-8
import turtle as t
import time
# 皮卡丘
# 基础设置
t.screensize(1366, 768)
t.pensize(2)  # 设置画笔的大小
t.speed(0)  # 设置画笔速度为10
# 画左偏曲线函数
bgcolor(1,0.2,0.1)
def radian_left(ang, dis, step, n):for i in range(n):dis += step  # dis增大stept.lt(ang)  # 向左转ang度t.fd(dis)  # 向前走dis的步长
def radian_right(ang, dis, step, n):for i in range(n):dis += stept.rt(ang)  # 向左转ang度t.fd(dis)  # 向前走dis的步长
#画耳朵def InitEars():t.color("black", "yellow")# 左耳朵曲线t.pu()  # 提笔t.goto(-50, 100)  # 笔头初始位置t.pd()  # 下笔t.setheading(110)  # 画笔角度t.begin_fill()radian_left(1.2, 0.4, 0.1, 40)t.setheading(270)  # 画笔角度radian_left(1.2, 0.4, 0.1, 40)t.setheading(44)  # 画笔角度t.forward(32)t.end_fill()# 右耳朵曲线t.pu()  # 提笔t.goto(50, 100)  # 笔头初始位置t.pd()  # 下笔t.setheading(70)  # 画笔角度t.begin_fill()radian_right(1.2, 0.4, 0.1, 40)t.setheading(270)  # 画笔角度radian_right(1.2, 0.4, 0.1, 40)t.setheading(136)  # 画笔角度t.forward(32)t.end_fill()# 耳朵黑t.begin_fill()t.fillcolor("black")t.pu()  # 提笔t.goto(88, 141)  # 笔头初始位置t.pd()  # 下笔t.setheading(35)  # 画笔角度radian_right(1.2, 1.6, 0.1, 16)t.setheading(270)  # 画笔角度radian_right(1.2, 0.4, 0.1, 25)t.setheading(132)  # 画笔角度t.forward(31)t.end_fill()t.begin_fill()t.fillcolor("black")t.pu()  # 提笔t.goto(-88, 141)  # 笔头初始位置t.pd()  # 下笔t.setheading(145)  # 画笔角度radian_left(1.2, 1.6, 0.1, 16)t.setheading(270)  # 画笔角度radian_left(1.2, 0.4, 0.1, 25)t.setheading(48)  # 画笔角度t.forward(31)t.end_fill()
# 画尾巴
def InitTail():# 尾巴t.begin_fill()t.fillcolor("yellow")t.pu()  # 提笔t.goto(64, -140)  # 笔头初始位置t.pd()  # 下笔t.setheading(10)  # 画笔角度t.forward(20)t.setheading(90)  # 画笔角度t.forward(20)t.setheading(10)  # 画笔角度t.forward(10)t.setheading(80)  # 画笔角度t.forward(100)t.setheading(35)  # 画笔角度t.forward(80)t.setheading(260)  # 画笔角度t.forward(100)t.setheading(205)  # 画笔角度t.forward(40)t.setheading(260)  # 画笔角度t.forward(37)t.setheading(205)  # 画笔角度t.forward(20)t.setheading(260)  # 画笔角度t.forward(25)t.setheading(175)  # 画笔角度t.forward(30)t.setheading(100)  # 画笔角度t.forward(13)t.end_fill()
# 画脚
def InitFoots():# 脚t.begin_fill()t.fillcolor("yellow")t.pensize(2)t.pu()  # 提笔t.goto(-70, -200)  # 笔头初始位置t.pd()  # 下笔t.setheading(225)  # 画笔角度radian_left(0.5, 1.2, 0, 12)radian_left(35, 0.6, 0, 4)radian_left(1, 1.2, 0, 18)t.setheading(160)  # 画笔角度t.forward(13)t.end_fill()t.begin_fill()t.fillcolor("yellow")t.pensize(2)t.pu()  # 提笔t.goto(70, -200)  # 笔头初始位置t.pd()  # 下笔t.setheading(315)  # 画笔角度radian_right(0.5, 1.2, 0, 12)radian_right(35, 0.6, 0, 4)radian_right(1, 1.2, 0, 18)t.setheading(20)  # 画笔角度t.forward(13)t.end_fill()
# 画身体
def InitBody():# 外形轮廓t.begin_fill()t.pu()  # 提笔t.goto(112, 0)  # 笔头初始位置t.pd()  # 下笔t.setheading(90)  # 画笔角度t.circle(112, 180)t.setheading(250)  # 画笔角度radian_left(1.6, 1.3, 0, 50)radian_left(0.8, 1.5, 0, 25)t.setheading(255)  # 画笔角度radian_left(0.4, 1.6, 0.2, 27)radian_left(2.8, 1, 0, 45)radian_right(0.9, 1.4, 0, 31)t.setheading(355)  # 画笔角度radian_right(0.9, 1.4, 0, 31)radian_left(2.8, 1, 0, 45)radian_left(0.4, 7.2, -0.2, 27)t.setheading(10)  # 画笔角度radian_left(0.8, 1.5, 0, 25)radian_left(1.6, 1.3, 0, 50)t.end_fill()
def InitEyes():# 左眼睛t.begin_fill()t.fillcolor("black")t.pu()  # 提笔t.goto(-46, 10)  # 笔头初始位置t.pd()  # 下笔t.setheading(90)  # 画笔角度t.circle(5, 360)t.end_fill()# 右眼睛t.begin_fill()t.fillcolor("black")t.pu()  # 提笔t.goto(46, 10)  # 笔头初始位置t.pd()  # 下笔t.setheading(-90)  # 画笔角度t.circle(5, 360)t.end_fill()
# 画脸
def InitFace():# 脸蛋t.begin_fill()t.fillcolor("red")t.pu()  # 提笔t.goto(-63, -10)  # 笔头初始位置t.pd()  # 下笔t.setheading(90)  # 画笔角度t.circle(10, 360)t.end_fill()t.begin_fill()t.fillcolor("red")t.pu()  # 提笔t.goto(63, -10)  # 笔头初始位置t.pd()  # 下笔t.setheading(-90)  # 画笔角度t.circle(10, 360)t.end_fill()# 嘴巴t.pensize(2.2)t.pu()  # 提笔t.goto(0, 0)  # 笔头初始位置t.pd()  # 下笔t.setheading(235)  # 画笔角度radian_right(5, 0.8, 0, 30)t.pu()  # 提笔t.goto(0, 0)  # 笔头初始位置t.pd()  # 下笔t.setheading(305)  # 画笔角度radian_left(5, 0.8, 0, 30)
# 画手
def InitHands():# 左手t.pensize(2)t.pu()  # 提笔t.goto(-46, -100)  # 笔头初始位置t.pd()  # 下笔t.setheading(285)  # 画笔角度radian_right(0.4, 1.2, 0, 26)radian_right(5, 0.35, 0, 26)radian_right(0.3, 1.2, 0, 15)# 右手t.pu()  # 提笔t.goto(46, -100)  # 笔头初始位置t.pd()  # 下笔t.setheading(255)  # 画笔角度radian_left(0.4, 1.2, 0, 26)radian_left(5, 0.35, 0, 26)radian_left(0.3, 1.2, 0, 15)
def CloseEyes():# 左眼睛t.pu()  # 提笔t.goto(-46, 12)  # 笔头初始位置t.pd()  # 下笔t.setheading(180)  # 画笔角度t.forward(10)# 右眼睛t.pu()  # 提笔t.goto(46, 12)  # 笔头初始位置t.pd()  # 下笔t.setheading(0)  # 画笔角度t.forward(10)
# 初始化
def Init():InitEars()InitTail()InitFoots()InitBody()InitFace()InitHands()InitEyes()
# 眨眼睛
def Upgarde():InitEars()InitTail()InitFoots()InitBody()InitFace()InitHands()CloseEyes()
def Upgarde_Init():InitEars()InitTail()InitFoots()InitBody()InitFace()InitHands()InitEyes()
def main():Init()t.tracer(False)# 眨眼睛动画for i in range(30):if i % 2 == 0:t.reset()t.hideturtle()Upgarde()t.update()time.sleep(0.3)else:t.reset()t.hideturtle()Upgarde_Init()t.update()time.sleep(1)
main()
done()

这篇关于用python 的turtle库画哆啦A梦和皮卡丘顺便加个背景音乐的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/501405

相关文章

Python结合PyWebView库打造跨平台桌面应用

《Python结合PyWebView库打造跨平台桌面应用》随着Web技术的发展,将HTML/CSS/JavaScript与Python结合构建桌面应用成为可能,本文将系统讲解如何使用PyWebView... 目录一、技术原理与优势分析1.1 架构原理1.2 核心优势二、开发环境搭建2.1 安装依赖2.2 验

一文详解如何在Python中从字符串中提取部分内容

《一文详解如何在Python中从字符串中提取部分内容》:本文主要介绍如何在Python中从字符串中提取部分内容的相关资料,包括使用正则表达式、Pyparsing库、AST(抽象语法树)、字符串操作... 目录前言解决方案方法一:使用正则表达式方法二:使用 Pyparsing方法三:使用 AST方法四:使用字

Python列表去重的4种核心方法与实战指南详解

《Python列表去重的4种核心方法与实战指南详解》在Python开发中,处理列表数据时经常需要去除重复元素,本文将详细介绍4种最实用的列表去重方法,有需要的小伙伴可以根据自己的需要进行选择... 目录方法1:集合(set)去重法(最快速)方法2:顺序遍历法(保持顺序)方法3:副本删除法(原地修改)方法4:

Python运行中频繁出现Restart提示的解决办法

《Python运行中频繁出现Restart提示的解决办法》在编程的世界里,遇到各种奇怪的问题是家常便饭,但是,当你的Python程序在运行过程中频繁出现“Restart”提示时,这可能不仅仅是令人头疼... 目录问题描述代码示例无限循环递归调用内存泄漏解决方案1. 检查代码逻辑无限循环递归调用内存泄漏2.

Python中判断对象是否为空的方法

《Python中判断对象是否为空的方法》在Python开发中,判断对象是否为“空”是高频操作,但看似简单的需求却暗藏玄机,从None到空容器,从零值到自定义对象的“假值”状态,不同场景下的“空”需要精... 目录一、python中的“空”值体系二、精准判定方法对比三、常见误区解析四、进阶处理技巧五、性能优化

使用Python构建一个Hexo博客发布工具

《使用Python构建一个Hexo博客发布工具》虽然Hexo的命令行工具非常强大,但对于日常的博客撰写和发布过程,我总觉得缺少一个直观的图形界面来简化操作,下面我们就来看看如何使用Python构建一个... 目录引言Hexo博客系统简介设计需求技术选择代码实现主框架界面设计核心功能实现1. 发布文章2. 加

python logging模块详解及其日志定时清理方式

《pythonlogging模块详解及其日志定时清理方式》:本文主要介绍pythonlogging模块详解及其日志定时清理方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地... 目录python logging模块及日志定时清理1.创建logger对象2.logging.basicCo

Python如何自动生成环境依赖包requirements

《Python如何自动生成环境依赖包requirements》:本文主要介绍Python如何自动生成环境依赖包requirements问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑... 目录生成当前 python 环境 安装的所有依赖包1、命令2、常见问题只生成当前 项目 的所有依赖包1、

如何将Python彻底卸载的三种方法

《如何将Python彻底卸载的三种方法》通常我们在一些软件的使用上有碰壁,第一反应就是卸载重装,所以有小伙伴就问我Python怎么卸载才能彻底卸载干净,今天这篇文章,小编就来教大家如何彻底卸载Pyth... 目录软件卸载①方法:②方法:③方法:清理相关文件夹软件卸载①方法:首先,在安装python时,下

python uv包管理小结

《pythonuv包管理小结》uv是一个高性能的Python包管理工具,它不仅能够高效地处理包管理和依赖解析,还提供了对Python版本管理的支持,本文主要介绍了pythonuv包管理小结,具有一... 目录安装 uv使用 uv 管理 python 版本安装指定版本的 Python查看已安装的 Python