[Python] [Audio] Use python to play audio as a reminder when the program is over

from playsound import playsound
playsound('音频路径')

Application: When the program runs for a long time, you can add playsound('音频路径')it to the last line of the code , so you don't have to spend energy on monitoring the running progress of the program.

Guess you like

Origin blog.csdn.net/why_not_study/article/details/115025927