mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 07:31:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			202 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			202 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!"
 |