我试图用Python3创建一个警报功能。下面的代码确实有效,但看起来这并不是实现这样的最佳方式。有更多的pythonic方式吗?
#!/usr/local/bin/python3
import os
import time
def alarm():
os.system('amixer -D pulse sset Master 30%') # >> Set initial volume
for beep in range(0, 20):
time.sleep(.002)
os.system('play --no-show-progress --null --channels 1 synth %s sine %f' % (.08, 2500))
alarm()