+ 1
What is the python code to emit a beep sound of 5 seconds??
I need coding for above problem
4 Réponses
+ 1
Hey Mohmad Ashik M A !
I would recommend trying to solve the problem yourself rather than asking people to do it instead as it helps you grow as a programmer. If you have any questions regarding specific problems while making it, then it would be fine asking for help at that point.
https://www.sololearn.com/discuss/1316935/?ref=app
0
You can use the windsound módulo in Windows
0
Print \a should work right ?
0
import winsound
frequency=2500
duration=5000 #1000ms = 1sec
winsound.Beep(f,d)