Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python beep windows

# https://stackoverflow.com/a/6537563
import winsound
frequency = 2500  # Set Frequency To 2500 Hertz
duration = 1000  # Set Duration To 1000 ms == 1 second
winsound.Beep(frequency, duration)
Comment

Python beep

import beepy
beep(sound=1) # integer as argument
beep(sound='coin') # string as argument
Comment

PREVIOUS NEXT
Code Example
Python :: Difference between end and sep python 
Python :: 1052 uri solution 
Python :: pyqt latex 
Python :: how to change the datatype of a row in pandas 
Python :: pandas scatter plot with different colors 
Python :: python print dict new line 
Python :: registering static files in jango 
Python :: python number guessing game 
Python :: how to find how many processors you have with python 
Python :: python read png file 
Python :: array search with regex python 
Python :: get cpu count in python 
Python :: random oversampling python 
Python :: mouse module python 
Python :: pandas read csv unnamed 0 
Python :: plotly reverse y axis 
Python :: sqlalchemy datetime default now create table 
Python :: python print stderr 
Python :: pyautogui pause in python 
Python :: openpyxl write in cell 
Python :: Finding the Variance and Standard Deviation of a list of numbers in Python 
Python :: python not null 
Python :: python datetime to utc 
Python :: use python type hint for multiple return values 
Python :: How to get the current user email from the account logged in? odoo 
Python :: Python pandas drop any row 
Python :: creata daframe python 
Python :: python inspect source code 
Python :: createview django 
Python :: pandas to csv float format 
ADD CONTENT
Topic
Content
Source link
Name
7+8 =