mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
8 lines
203 B
Python
8 lines
203 B
Python
# Ridiculously simple test of the winsound module for Windows.
|
|
|
|
import winsound
|
|
for i in range(100, 2000, 100):
|
|
winsound.Beep(i, 75)
|
|
print "Hopefully you heard some sounds increasing in frequency!"
|
|
|