📜  python 创建一个 ping 的声音 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:27.800000             🧑  作者: Mango

代码示例1
On Windows, if you want to just make the computer make a beep sound:

import winsound
frequency = 2500  # Set Frequency To 2500 Hertz
duration = 1000  # Set Duration To 1000 ms == 1 second
winsound.Beep(frequency, duration)


The winsound.Beep() can be used wherever you want the beep to occur.