- 新增 test.py 文件- 实现了通过 os.startfile 方法播放指定音乐文件的功能 - 目前播放的音乐文件为 "国风堂#哦漏 - 知我.mp3"
4 lines
109 B
Python
4 lines
109 B
Python
import os
|
|
|
|
audio_file = "C:/Users/Administrator/Music/国风堂#哦漏 - 知我.mp3"
|
|
os.startfile(audio_file) |