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 :: matplotlib equal axis 
Python :: rename columns in python 
Python :: zsh: command not found: virtualenv 
Python :: requests get image from url 
Python :: pygame play sound 
Python :: remove python ubuntu 
Python :: how to check python version 
Python :: python list all csv in dir 
Python :: check filed exist in object python 
Python :: Pandas: How to Drop Rows that Contain a Specific String 
Python :: xlabel seaborn 
Python :: pandas find na 
Python :: how to print hostname in python 
Python :: python alphabet capital 
Python :: take space separated int input in python 
Python :: window size cv2 
Python :: python create directory 
Python :: migrate skip in django 
Python :: how to find geometric mean in python 
Python :: get path to file without filename python 
Python :: pandas loop through rows 
Python :: python listdir with full paths 
Python :: save request response json to file python 
Python :: timeout exception in selenium python 
Python :: pandas select all columns except one 
Python :: how to get size of folder python 
Python :: pandas how to get last index 
Python :: how to import login required in django 
Python :: autoslugfield django 3 
Python :: how to remove text in brackets of python 
ADD CONTENT
Topic
Content
Source link
Name
1+7 =