“Python Beep Windows” Respostas de código

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)
Cylon

Python Beep

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

Respostas semelhantes a “Python Beep Windows”

Perguntas semelhantes a “Python Beep Windows”

Mais respostas relacionadas para “Python Beep Windows” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código