【原创】音乐播放器系列-1:Python Pygame(附完整源码)
off999 2024-09-21 20:53 49 浏览 0 评论
△ 内容:
1 音乐播放器图片和操作图展示。
2 代码讲解,提供代码可读性和锻炼python编程能力,是学习python的一个生动的好项目。
3 附完整源码,个人原创,无偿奉献出来。
4 适合人群:编程爱好者,python学习者,学生。
△ 图-1:
△ 图-2:
△ 音乐播放器特点:
1 播放按钮:上一首、播放、暂停、恢复、停止、下一首,鼠标点击操作。
2 播放列表:默认文件夹下的音乐mp3读取并显示。
3 音量:鼠标可调节。
4 音乐播放进度条:当前时间,播放进度条,歌曲总时间。
5 歌词显示,当前播放歌曲名显示。
△ 文件夹布局图:
图-3 注意:pygame的中文字体simsun.ttc 需要自己提前下载,或者自己采用其他中文字体。
图-4 歌曲mp3和歌词lrc需要自己提前下载,可放自己喜欢的其他歌曲和配套的歌词lrc。
△ 操作示范:
△ 代码详解:
第1步:导入模块
import pygame,os,sys
from mutagen.mp3 import MP3第2步:初始化:
特色一:本地文件夹初始化。
pygame.init() # pygame初始化
PATH_ROOT = os.path.split(sys.argv[0])[0] # 本地文件夹初始化
window_width, window_height = 1000, 1000 # 窗口大小设置
window = pygame.display.set_mode((window_width, window_height))
pygame.display.set_caption("Music Player") # 窗口标题名
font = pygame.font.Font("/".join([PATH_ROOT, "simsun.ttc"]) , 30) # 中文字体设置
volume = 0.5 # 初始音量值第3步:默认音乐播放文件夹
特色二:本地文件夹song里有mp3和lrc文件,匹配和对应的,读取出来有一定难度。
# 第3步:默认音乐播放文件夹
# 3-1 定义函数:找文件夹和文件夹匹配
def find_files_with_suffix(folder_path, suffix):
all_files = os.listdir(folder_path)
filtered_files = [file for file in all_files if file.endswith(suffix)]
return filtered_files
# 3-2默认音乐播放文件夹
music_dir = "/".join([PATH_ROOT, "song"])
music_files = find_files_with_suffix(music_dir, ".mp3")第4步:播放音乐的初始化
特色三:这里有歌曲和歌词初始化,歌词出来问题。
# 第4步:播放音乐的初始化
# 4-1 播放音乐mp3
current_track = 0 # 初始播放列表文件位置
pygame.mixer.music.load(os.path.join(music_dir, music_files[current_track])) # 加载音乐
# 4-2 歌词初始化
def LRCopen():
global musicL,musicDict,current_track
name = music_files[current_track].split('.')[0]
lrc_dir = "/".join([PATH_ROOT, "song",name+'.lrc'])
# 歌词
file1 = open(lrc_dir, "r", encoding="utf-8")
musicList=file1.readlines()
musicDict={} #用字典来保存该时刻对应的歌词
musicL=[]
for i in musicList:
musicTime=i.split("]")
for j in musicTime[:-1]:
musicTime1=j[1:].split(":")
musicTL=float(musicTime1[0])*60+float(musicTime1[1])
musicTL=float("%.2f" %musicTL)
musicDict[musicTL]=musicTime[-1]
for i in musicDict:
musicL.append(float("%.2f" %i))
musicL.sort()
return musicL,musicDict
# 4-3 歌词初始化,时间和歌词
musicL=LRCopen()[0]
musicDict=LRCopen()[1]第5步:函数功能定义
播放按钮的功能函数定义和时间格式化函数。
# 第5步:函数功能定义
# 5-1 播放
def play_track():
pygame.mixer.music.play()
# 5-2 暂停
def pause_track():
pygame.mixer.music.pause()
# 5-3 恢复
def resume_track():
pygame.mixer.music.unpause()
# 5-4 停止
def stop_track():
pygame.mixer.music.stop()
# 5-5 下一首
def next_track():
global current_track,musicL,musicDict
current_track = (current_track + 1) % len(music_files)
pygame.mixer.music.load(os.path.join(music_dir, music_files[current_track]))
musicL=LRCopen()[0]
musicDict=LRCopen()[1]
play_track()
# 5-6 上一首
def previous_track():
global current_track,musicL,musicDict
current_track = (current_track - 1) % len(music_files)
pygame.mixer.music.load(os.path.join(music_dir, music_files[current_track]))
musicL=LRCopen()[0]
musicDict=LRCopen()[1]
play_track()
# 5-7 音乐时间获取
def duration_format(d):
d = int(float(d))
dd = int(d % (60*60))
min = int(dd / 60)
sec = int(dd % 60)
return "{:0>2}:{:0>2}".format(min, sec)第6步:循环
这里面是重点,分点讲解。
6-1 循环启动和退出设置
# 第6步:循环启动
running = True
while running:
# 6-1 退出设置
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False6-2 部分窗口布局
这里窗口布局主要是播放列表,音量调节,正在播放歌曲名和播放按钮的设置和布局,所以是部分布局,不包括播放进度条和歌词显示。
# 6-2 窗口布局
# 6-2-1 播放列表框
rectCoord = [10, 30, 780, 300]
rect = pygame.Rect(rectCoord)
pygame.draw.rect(window, 'white', rect, 2)
pygame.draw.rect(window,(0,0,0),(30,50,700,250)) # 黑色框
# 播放列表
playlist_text=font.render("Playlist:", True,'white')
window.blit(playlist_text, (50, 50))
for i in range(len(music_files)):
playlist_text=font.render(music_files[i], True, 'white')
window.blit(playlist_text, (50, 50+30*(i+1)))
# 6-2-2 音量
rectCoord = [820, 30, 150, 300]
rect = pygame.Rect(rectCoord)
pygame.draw.rect(window, 'white', rect, 2)
volume_text = font.render("音 量", True, 'red',bgcolor='white') # 音量标签
window.blit(volume_text, (850, 50))
# 音量条bar
pygame.draw.rect(window, 'white', (880, 100, 20, 200))
pygame.draw.rect(window, 'green', (880, int(300 - volume * 100), 20, int(volume * 100)))
# 6-2-3 正在播放歌曲
rectCoord = [10, 350, 980, 100] # 框
rect = pygame.Rect(rectCoord)
pygame.draw.rect(window, 'white', rect, 2)
nowplayingsong=font.render("Now Playing : "+music_files[current_track], True,'white')
pygame.draw.rect(window,(0,0,0),(30,360,900,80)) # 黑色框
window.blit(nowplayingsong, (50, 370)) # 正在播放歌曲名
# 6-2-4 按钮
# 6-2-4-1 按钮框
rectCoord = [10, 470, 980, 100]
rect = pygame.Rect(rectCoord)
pygame.draw.rect(window, 'white', rect, 2)
# 6-2-4-2 按钮定义
play_text = font.render("播 放", True, 'red',bgcolor='white')
pause_text = font.render("暂 停", True,'red',bgcolor='white')
resume_text = font.render("恢 复", True, 'red',bgcolor='white')
stop_text = font.render("停 止", True, 'red',bgcolor='white')
next_text = font.render("下一首", True, 'red',bgcolor='white')
previous_text = font.render("上一首", True, 'red',bgcolor='white')
# 6-2-4-3 按钮位置
window.blit(previous_text, (50, 500))
window.blit(play_text, (200, 500))
window.blit(pause_text, (350, 500))
window.blit(resume_text, (500, 500))
window.blit(stop_text, (650, 500))
window.blit(next_text, (800, 500))6-3 鼠标事件
在pygame中用鼠标点击操作,比如点击按钮和调节音量。
# 6-3 鼠标事件
mouse_x, mouse_y = pygame.mouse.get_pos()
# 播 放
if 200 <= mouse_x <= 200 + play_text.get_width() and 500 <= mouse_y <= 500 + play_text.get_height():
if pygame.mouse.get_pressed()[0]:
play_track()
# 暂停
elif 350 <= mouse_x <= 350 + pause_text.get_width() and 500 <= mouse_y <= 500 + pause_text.get_height():
if pygame.mouse.get_pressed()[0]:
pause_track()
# 恢复
elif 500 <= mouse_x <= 500 + resume_text.get_width() and 500 <= mouse_y <= 500 + resume_text.get_height():
if pygame.mouse.get_pressed()[0]:
resume_track()
# 停止
elif 650 <= mouse_x <= 650 + stop_text.get_width() and 500 <= mouse_y <= 500 + stop_text.get_height():
if pygame.mouse.get_pressed()[0]:
stop_track()
# 下一首
elif 800 <= mouse_x <= 800 + next_text.get_width() and 500 <= mouse_y <= 500 + next_text.get_height():
if pygame.mouse.get_pressed()[0]:
next_track()
# 上一首
elif 50 <= mouse_x <= 50 + previous_text.get_width() and 500 <= mouse_y <= 500 + previous_text.get_height():
if pygame.mouse.get_pressed()[0]:
previous_track()
# 音乐调节
elif 850 <= mouse_x <= 950 and 100 <= mouse_y <= 300:
if pygame.mouse.get_pressed()[0]:
volume = (300 - mouse_y) / 100
pygame.mixer.music.set_volume(volume)6-4 音乐播放进度条
# 6-4 音乐播放进度条
# 计时器:用于播放进度条
RATE = pygame.USEREVENT + 1 # 用户自定义的进度条事件
# 建立一个定时器,50毫秒触发一次用户自定义事件
pygame.time.set_timer(RATE, 50)
clock = pygame.time.Clock()
# 画进度条播放框
rectCoord = [10, 880, 980, 100]
# 生成长方体对象
rect = pygame.Rect(rectCoord)
# 在屏幕上用定义的颜色、形状、位置、线宽画长方体
pygame.draw.rect(window, 'white', rect, 2)
# 进度条框
PROGRESSPOS = pygame.Rect(250,920,500,10) # 进度条,全局变量
rec0 = PROGRESSPOS.copy() # 进度条背景条框
pygame.draw.rect(window, "white", rec0) # 进度条背景条框
# 初始化音乐播放当前时间:左侧时间
pygame.draw.rect(window,(0,0,0),(140,900,100,50)) # 黑色框
txt=duration_format(0)
img = font.render(txt, 1, 'white') # 当前歌曲播放时间
window.blit(img, (142,910)) # 位置
# 获取音乐总时长,右侧时间
mp3_info = MP3(os.path.join(music_dir, music_files[current_track]))
length = mp3_info.info.length # 歌曲时长(秒)
pygame.draw.rect(window,(0,0,0),(800,900,100,50)) # 黑色框
duration = round(length)
d_f=duration_format(duration)
songlenght = font.render(d_f, 1, 'white') # 歌曲总时长
window.blit(songlenght, (810,910))
# 音乐播放时间和进度条
if pygame.mixer.music.get_busy():
sec = pygame.mixer.music.get_pos() / 1000
pygame.draw.rect(window,(0,0,0),(140,900,100,50)) # 黑色框
h = int(sec / 60 / 60)
m = int((sec - h*60*60) / 60)
s = int(sec - h*60*60 - m*60)
txt = '{1:02d}:{2:02d}'.format(h, m, s)
img = font.render(txt, 1, 'white') # 当前歌曲播放时间
window.blit(img, (142,910)) # 位置
pygame.draw.rect(window,(0,0,0),(800,900,100,50)) # 黑色框
window.blit(songlenght, (810,910))
# 获取当前播放的时间
sec %= length # 如果循环播放,需要处理
rate = sec / length
# 画进度条
rec = PROGRESSPOS.copy()
rec.width = PROGRESSPOS.width * rate # 长方形宽度
# 画进度条绿色进度
pygame.draw.rect(window, "green", rec)6-5 歌词显示
# 6-5 歌词显示
current = pygame.mixer.music.get_pos() / 1000 # 毫秒
currenttime=float("%.2f" %current)
for i in range(len(musicL)):
if musicL[i]==currenttime:
txtsurf = font.render('', True, 'white')
window.blit(txtsurf,(300, 700))
pygame.draw.rect(window,(255,0,0),(50,620,900,200)) # 红色框
# 歌词动态显示
txtsurf = font.render(musicDict.get(musicL[i]), True, 'white')
window.blit(txtsurf,(300, 700))
pygame.display.update()
pygame.display.flip()第7步:退出
# 第7步:退出
pygame.quit()△ 备注:
1 代码还可以优化,还可以更简洁。
2有一个小小bug,那就是因为初始化播放歌曲和歌词,所以在点击上一首或者下一首时,会可能有第一首歌曲重复出现,一闪而过,不注意是看不出来的。同时也悄悄证明是我的原创代码。
△ 附完整源码:
# 第1步:导入模块
import pygame,os,sys
from mutagen.mp3 import MP3
# 第2步:初始化
pygame.init() # pygame初始化
PATH_ROOT = os.path.split(sys.argv[0])[0] # 本地文件夹初始化
window_width, window_height = 1000, 1000 # 窗口大小设置
window = pygame.display.set_mode((window_width, window_height))
pygame.display.set_caption("Music Player") # 窗口标题名
font = pygame.font.Font("/".join([PATH_ROOT, "simsun.ttc"]) , 30) # 中文字体设置
volume = 0.5 # 初始音量值
# 第3步:默认音乐播放文件夹
# 3-1 定义函数:找文件夹和文件夹匹配
def find_files_with_suffix(folder_path, suffix):
all_files = os.listdir(folder_path)
filtered_files = [file for file in all_files if file.endswith(suffix)]
return filtered_files
# 3-2默认音乐播放文件夹
music_dir = "/".join([PATH_ROOT, "song"])
music_files = find_files_with_suffix(music_dir, ".mp3")
# 第4步:播放音乐的初始化
# 4-1 播放音乐mp3
current_track = 0 # 初始播放列表文件位置
pygame.mixer.music.load(os.path.join(music_dir, music_files[current_track])) # 加载音乐
# 4-2 歌词初始化
def LRCopen():
global musicL,musicDict,current_track
name = music_files[current_track].split('.')[0]
lrc_dir = "/".join([PATH_ROOT, "song",name+'.lrc'])
# 歌词
file1 = open(lrc_dir, "r", encoding="utf-8")
musicList=file1.readlines()
musicDict={} #用字典来保存该时刻对应的歌词
musicL=[]
for i in musicList:
musicTime=i.split("]")
for j in musicTime[:-1]:
musicTime1=j[1:].split(":")
musicTL=float(musicTime1[0])*60+float(musicTime1[1])
musicTL=float("%.2f" %musicTL)
musicDict[musicTL]=musicTime[-1]
for i in musicDict:
musicL.append(float("%.2f" %i))
musicL.sort()
return musicL,musicDict
# 4-3 歌词初始化,时间和歌词
musicL=LRCopen()[0]
musicDict=LRCopen()[1]
# 第5步:函数功能定义
# 5-1 播放
def play_track():
pygame.mixer.music.play()
# 5-2 暂停
def pause_track():
pygame.mixer.music.pause()
# 5-3 恢复
def resume_track():
pygame.mixer.music.unpause()
# 5-4 停止
def stop_track():
pygame.mixer.music.stop()
# 5-5 下一首
def next_track():
global current_track,musicL,musicDict
current_track = (current_track + 1) % len(music_files)
pygame.mixer.music.load(os.path.join(music_dir, music_files[current_track]))
musicL=LRCopen()[0]
musicDict=LRCopen()[1]
play_track()
# 5-6 上一首
def previous_track():
global current_track,musicL,musicDict
current_track = (current_track - 1) % len(music_files)
pygame.mixer.music.load(os.path.join(music_dir, music_files[current_track]))
musicL=LRCopen()[0]
musicDict=LRCopen()[1]
play_track()
# 5-7 音乐时间获取
def duration_format(d):
d = int(float(d))
dd = int(d % (60*60))
min = int(dd / 60)
sec = int(dd % 60)
return "{:0>2}:{:0>2}".format(min, sec)
# 第6步:循环启动
running = True
while running:
# 6-1 退出设置
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
# 6-2 窗口布局
# 6-2-1 播放列表框
rectCoord = [10, 30, 780, 300]
rect = pygame.Rect(rectCoord)
pygame.draw.rect(window, 'white', rect, 2)
pygame.draw.rect(window,(0,0,0),(30,50,700,250)) # 黑色框
# 播放列表
playlist_text=font.render("Playlist:", True,'white')
window.blit(playlist_text, (50, 50))
for i in range(len(music_files)):
playlist_text=font.render(music_files[i], True, 'white')
window.blit(playlist_text, (50, 50+30*(i+1)))
# 6-2-2 音量
rectCoord = [820, 30, 150, 300]
rect = pygame.Rect(rectCoord)
pygame.draw.rect(window, 'white', rect, 2)
volume_text = font.render("音 量", True, 'red',bgcolor='white') # 音量标签
window.blit(volume_text, (850, 50))
# 音量条bar
pygame.draw.rect(window, 'white', (880, 100, 20, 200))
pygame.draw.rect(window, 'green', (880, int(300 - volume * 100), 20, int(volume * 100)))
# 6-2-3 正在播放歌曲
rectCoord = [10, 350, 980, 100] # 框
rect = pygame.Rect(rectCoord)
pygame.draw.rect(window, 'white', rect, 2)
nowplayingsong=font.render("Now Playing : "+music_files[current_track], True,'white')
pygame.draw.rect(window,(0,0,0),(30,360,900,80)) # 黑色框
window.blit(nowplayingsong, (50, 370)) # 正在播放歌曲名
# 6-2-4 按钮
# 6-2-4-1 按钮框
rectCoord = [10, 470, 980, 100]
rect = pygame.Rect(rectCoord)
pygame.draw.rect(window, 'white', rect, 2)
# 6-2-4-2 按钮定义
play_text = font.render("播 放", True, 'red',bgcolor='white')
pause_text = font.render("暂 停", True,'red',bgcolor='white')
resume_text = font.render("恢 复", True, 'red',bgcolor='white')
stop_text = font.render("停 止", True, 'red',bgcolor='white')
next_text = font.render("下一首", True, 'red',bgcolor='white')
previous_text = font.render("上一首", True, 'red',bgcolor='white')
# 6-2-4-3 按钮位置
window.blit(previous_text, (50, 500))
window.blit(play_text, (200, 500))
window.blit(pause_text, (350, 500))
window.blit(resume_text, (500, 500))
window.blit(stop_text, (650, 500))
window.blit(next_text, (800, 500))
# 6-3 鼠标事件
mouse_x, mouse_y = pygame.mouse.get_pos()
# 播 放
if 200 <= mouse_x <= 200 + play_text.get_width() and 500 <= mouse_y <= 500 + play_text.get_height():
if pygame.mouse.get_pressed()[0]:
play_track()
# 暂停
elif 350 <= mouse_x <= 350 + pause_text.get_width() and 500 <= mouse_y <= 500 + pause_text.get_height():
if pygame.mouse.get_pressed()[0]:
pause_track()
# 恢复
elif 500 <= mouse_x <= 500 + resume_text.get_width() and 500 <= mouse_y <= 500 + resume_text.get_height():
if pygame.mouse.get_pressed()[0]:
resume_track()
# 停止
elif 650 <= mouse_x <= 650 + stop_text.get_width() and 500 <= mouse_y <= 500 + stop_text.get_height():
if pygame.mouse.get_pressed()[0]:
stop_track()
# 下一首
elif 800 <= mouse_x <= 800 + next_text.get_width() and 500 <= mouse_y <= 500 + next_text.get_height():
if pygame.mouse.get_pressed()[0]:
next_track()
# 上一首
elif 50 <= mouse_x <= 50 + previous_text.get_width() and 500 <= mouse_y <= 500 + previous_text.get_height():
if pygame.mouse.get_pressed()[0]:
previous_track()
# 音乐调节
elif 850 <= mouse_x <= 950 and 100 <= mouse_y <= 300:
if pygame.mouse.get_pressed()[0]:
volume = (300 - mouse_y) / 100
pygame.mixer.music.set_volume(volume)
# 6-4 音乐播放进度条
# 计时器:用于播放进度条
RATE = pygame.USEREVENT + 1 # 用户自定义的进度条事件
# 建立一个定时器,50毫秒触发一次用户自定义事件
pygame.time.set_timer(RATE, 50)
clock = pygame.time.Clock()
# 画进度条播放框
rectCoord = [10, 880, 980, 100]
# 生成长方体对象
rect = pygame.Rect(rectCoord)
# 在屏幕上用定义的颜色、形状、位置、线宽画长方体
pygame.draw.rect(window, 'white', rect, 2)
# 进度条框
PROGRESSPOS = pygame.Rect(250,920,500,10) # 进度条,全局变量
rec0 = PROGRESSPOS.copy() # 进度条背景条框
pygame.draw.rect(window, "white", rec0) # 进度条背景条框
# 初始化音乐播放当前时间:左侧时间
pygame.draw.rect(window,(0,0,0),(140,900,100,50)) # 黑色框
txt=duration_format(0)
img = font.render(txt, 1, 'white') # 当前歌曲播放时间
window.blit(img, (142,910)) # 位置
# 获取音乐总时长,右侧时间
mp3_info = MP3(os.path.join(music_dir, music_files[current_track]))
length = mp3_info.info.length # 歌曲时长(秒)
pygame.draw.rect(window,(0,0,0),(800,900,100,50)) # 黑色框
duration = round(length)
d_f=duration_format(duration)
songlenght = font.render(d_f, 1, 'white') # 歌曲总时长
window.blit(songlenght, (810,910))
# 音乐播放时间和进度条
if pygame.mixer.music.get_busy():
sec = pygame.mixer.music.get_pos() / 1000
pygame.draw.rect(window,(0,0,0),(140,900,100,50)) # 黑色框
h = int(sec / 60 / 60)
m = int((sec - h*60*60) / 60)
s = int(sec - h*60*60 - m*60)
txt = '{1:02d}:{2:02d}'.format(h, m, s)
img = font.render(txt, 1, 'white') # 当前歌曲播放时间
window.blit(img, (142,910)) # 位置
pygame.draw.rect(window,(0,0,0),(800,900,100,50)) # 黑色框
window.blit(songlenght, (810,910))
# 获取当前播放的时间
sec %= length # 如果循环播放,需要处理
rate = sec / length
# 画进度条
rec = PROGRESSPOS.copy()
rec.width = PROGRESSPOS.width * rate # 长方形宽度
# 画进度条绿色进度
pygame.draw.rect(window, "green", rec)
# 6-5 歌词显示
current = pygame.mixer.music.get_pos() / 1000 # 毫秒
currenttime=float("%.2f" %current)
for i in range(len(musicL)):
if musicL[i]==currenttime:
txtsurf = font.render('', True, 'white')
window.blit(txtsurf,(300, 700))
pygame.draw.rect(window,(255,0,0),(50,620,900,200)) # 红色框
# 歌词动态显示
txtsurf = font.render(musicDict.get(musicL[i]), True, 'white')
window.blit(txtsurf,(300, 700))
pygame.display.update()
pygame.display.flip()
# 第7步:退出
pygame.quit()相关推荐
- 安全教育登录入口平台(安全教育登录入口平台官网)
-
122交通安全教育怎么登录:122交通网的注册方法是首先登录网址http://www.122.cn/,接着打开网页后,点击右上角的“个人登录”;其次进入邮箱注册,然后进入到注册页面,输入相关信息即可完...
- 大鱼吃小鱼经典版(大鱼吃小鱼经典版(经典版)官方版)
-
大鱼吃小鱼小鱼吃虾是于谦跟郭麒麟的《我的棒儿呢?》郭德纲说于思洋郭麒麟作诗的相声,最后郭麒麟做了一首,师傅躺在师母身上大鱼吃小鱼小鱼吃虾虾吃水水落石出师傅压师娘师娘压床床压地地动山摇。...
-
- 哪个软件可以免费pdf转ppt(免费的pdf转ppt软件哪个好)
-
要想将ppt免费转换为pdf的话,我们建议大家可以下一个那个wps,如果你是会员的话,可以注册为会员,这样的话,在wps里面的话,就可以免费将ppt呢转换为pdfpdf之后呢,我们就可以直接使用,不需要去直接不需要去另外保存,为什么格式转...
-
2026-02-04 09:03 off999
- 电信宽带测速官网入口(电信宽带测速官网入口app)
-
这个网站看看http://www.swok.cn/pcindex.jsp1.登录中国电信网上营业厅,宽带光纤,贴心服务,宽带测速2.下载第三方软件,如360等。进行在线测速进行宽带测速时,尽...
- 植物大战僵尸95版手机下载(植物大战僵尸95 版下载)
-
1可以在应用商店或者游戏平台上下载植物大战僵尸95版手机游戏。2下载教程:打开应用商店或者游戏平台,搜索“植物大战僵尸95版”,找到游戏后点击下载按钮,等待下载完成即可安装并开始游戏。3注意:确...
- 免费下载ppt成品的网站(ppt成品免费下载的网站有哪些)
-
1、Chuangkit(chuangkit.com)直达地址:chuangkit.com2、Woodo幻灯片(woodo.cn)直达链接:woodo.cn3、OfficePlus(officeplu...
- 2025世界杯赛程表(2025世界杯在哪个国家)
-
2022年卡塔尔世界杯赛程公布,全部比赛在卡塔尔境内8座球场举行,2022年,决赛阶段球队全部确定。揭幕战于当地时间11月20日19时进行,由东道主卡塔尔对阵厄瓜多尔,决赛于当地时间12月18日...
- 下载搜狐视频电视剧(搜狐电视剧下载安装)
-
搜狐视频APP下载好的视频想要导出到手机相册里方法如下1、打开手机搜狐视频软件,进入搜狐视频后我们点击右上角的“查找”,找到自已喜欢的视频。2、在“浏览器页面搜索”窗口中,输入要下载的视频的名称,然后...
- 永久免费听歌网站(丫丫音乐网)
-
可以到《我爱音乐网》《好听音乐网》《一听音乐网》《YYMP3音乐网》还可以到《九天音乐网》永久免费听歌软件有酷狗音乐和天猫精灵,以前要跳舞经常要下载舞曲,我从QQ上找不到舞曲下载就从酷狗音乐上找,大多...
- 音乐格式转换mp3软件(音乐格式转换器免费版)
-
有两种方法:方法一在手机上操作:1、进入手机中的文件管理。2、在其中选择“音乐”,将显示出手机中的全部音乐。3、点击“全选”,选中所有音乐文件。4、点击屏幕右下方的省略号图标,在弹出菜单中选择“...
- 电子书txt下载(免费的最全的小说阅读器)
-
1.Z-library里面收录了近千万本电子书籍,需求量大。2.苦瓜书盘没有广告,不需要账号注册,使用起来非常简单,直接搜索预览下载即可。3.鸠摩搜书整体风格简洁清晰,书籍资源丰富。4.亚马逊图书书籍...
- 最好免费观看高清电影(播放免费的最好看的电影)
-
在目前的网上选择中,IMDb(互联网电影数据库)被认为是最全的电影网站之一。这个网站提供了各种类型的电影和电视节目的海量信息,包括剧情介绍、演员表、评价、评论等。其还提供了有关电影制作背后的详细信息,...
- 孤单枪手2简体中文版(孤单枪手2简体中文版官方下载)
-
要将《孤胆枪手2》游戏的征兵秘籍切换为中文,您可以按照以下步骤进行操作:首先,打开游戏设置选项,通常可以在游戏主菜单或游戏内部找到。然后,寻找语言选项或界面选项,点击进入。在语言选项中,选择中文作为游...
欢迎 你 发表评论:
- 一周热门
-
-
抖音上好看的小姐姐,Python给你都下载了
-
全网最简单易懂!495页Python漫画教程,高清PDF版免费下载
-
飞牛NAS部署TVGate Docker项目,实现内网一键转发、代理、jx
-
win7系统还原步骤图解(win7还原电脑系统的步骤)
-
Python 3.14 的 UUIDv6/v7/v8 上新,别再用 uuid4 () 啦!
-
python入门到脱坑 输入与输出—str()函数
-
16949认证费用是多少(16949审核员太难考了)
-
linux软件(linux软件图标)
-
Python三目运算基础与进阶_python三目运算符判断三个变量
-
windows7旗舰版多少钱(win7旗舰版要多少钱)
-
- 最近发表
- 标签列表
-
- python计时 (73)
- python安装路径 (56)
- python类型转换 (93)
- python进度条 (67)
- python吧 (67)
- python的for循环 (65)
- python格式化字符串 (61)
- python静态方法 (57)
- python列表切片 (59)
- python面向对象编程 (60)
- python 代码加密 (65)
- python串口编程 (77)
- python封装 (57)
- python写入txt (66)
- python读取文件夹下所有文件 (59)
- python操作mysql数据库 (66)
- python获取列表的长度 (64)
- python接口 (63)
- python调用函数 (57)
- python多态 (60)
- python匿名函数 (59)
- python打印九九乘法表 (65)
- python赋值 (62)
- python异常 (69)
- python元祖 (57)
