我的代码需要很长时间才能运行,我不想一直盯着它,但想知道它什么时候完成。
我怎样才能使(Python)代码在完成时发出“警报”?我正在考虑让它在代码结束时播放一个.wav文件……
这个想法可行吗? 如果是,我该怎么做呢?
我的代码需要很长时间才能运行,我不想一直盯着它,但想知道它什么时候完成。
我怎样才能使(Python)代码在完成时发出“警报”?我正在考虑让它在代码结束时播放一个.wav文件……
这个想法可行吗? 如果是,我该怎么做呢?
当前回答
参见:Python Sound(“Bell”) 当我想做同样的事情时,这帮助了我。 所有学分归gbc所有
引用:
你有没有试过:
import sys
sys.stdout.write('\a')
sys.stdout.flush()
这在Mac OS 10.5上也适用
实际上,我认为你最初的尝试也可以,只要稍加修改:
print('\a')
(您只需要在字符序列周围加上单引号)。
其他回答
这个似乎在Windows和Linux上都可以运行*(从这个问题来看):
def beep():
print("\a")
beep()
在Windows中,可以在末尾放置:
import winsound
winsound.Beep(500, 1000)
where 500 is the frequency in Herz
1000 is the duration in miliseconds
要在Linux上工作,你可能需要做以下事情(来自QO的评论):
在终端中,输入'cd /etc/modprobe。然后输入gksudo gedit blacklist.conf 注释一行说“黑名单pcspkr”,然后重新启动 还要检查终端首选项是否选中了“终端铃声”。
print('\007')
Linux下播放铃声。在Windows 10操作系统下播放错误声音。
为什么要使用python呢?您可能会忘记删除它并将其签入存储库。只需运行python命令&&和另一个命令来执行警报。
python myscript.py &&
notify-send 'Alert' 'Your task is complete' &&
paplay /usr/share/sounds/freedesktop/stereo/suspend-error.oga
或者将一个函数放到.bashrc中。这里我用的是python但是你可以重写" python "
function apython() {
/usr/bin/python $*
notify-send 'Alert' "python $* is complete"
paplay /usr/share/sounds/freedesktop/stereo/suspend-error.oga
}
在Windows上
import winsound
duration = 1000 # milliseconds
freq = 440 # Hz
winsound.Beep(freq, duration)
其中,freq是以赫兹为单位的频率,持续时间以毫秒为单位。
Linux和Mac
import os
duration = 1 # seconds
freq = 440 # Hz
os.system('play -nq -t alsa synth {} sine {}'.format(duration, freq))
为了使用这个示例,您必须安装sox。
在Debian / Ubuntu / Linux Mint上,在你的终端上运行这个:
sudo apt install sox
在Mac上,在你的终端上运行这个(使用macports):
sudo port install sox
在Mac上的演讲
import os
os.system('say "your program has finished"')
关于Linux的演讲
import os
os.system('spd-say "your program has finished"')
你需要在Ubuntu中安装speech-dispatcher包(或者在其他发行版中安装相应的包):
sudo apt install speech-dispatcher
import subprocess
subprocess.call(['D:\greensoft\TTPlayer\TTPlayer.exe', "E:\stridevampaclip.mp3"])