标签:查看 play tor top class 文件 https 模块 alt
python实现音乐播放器
模块:pygame
模块:time
Python 布尔循环实例:
import time
import pygame
muxi_k = """
_________________
|Pyhon音乐播放器|
???? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
_____ __________
| || ||__ |
| | | || 口| __| |
| | | || _||___ |
|_|_|_|| | __| | /\ /\ \/ |/
|_| |____| / \/ \ /\ __ |\\
"""
print(muxi_k)
file=r‘F:\CloudMusic\枫茜相随.mp3‘ # mp3文件路径
pygame.mixer.init()
print("正在播放",file)
track = pygame.mixer.music.load(file)
pygame.mixer.music.play()
time.sleep(130) #播放时间
pygame.mixer.music.stop()
效果图如下:
标签:查看 play tor top class 文件 https 模块 alt
原文地址:https://www.cnblogs.com/muxii/p/9746992.html