Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to make it so that when someone types in an int it will play a short sound. How can I do this? Sorry if this question is nooby, I recently started python.

share|improve this question

closed as not a real question by ninjagecko, Makoto, casperOne Jun 21 '12 at 12:24

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

import subprocess

def playSound():
    subprocess.call(['yourSoundPlayer', 'pathToSomeSoundFile'])

x = raw_input('Type in something that resembles an int:')
try:
    i = int(x)
    isInt = True
except ValueError:
    isInt = False
    pass  #do what you feel is appropriate

if isInt:
    playSound()

Less robustly:

from subprocess import *
if all(c in '0123456789' for c in raw_input('input:')):
    call(['yourSoundPlayer', 'pathToSomeSoundFile'])
share|improve this answer
2  
Nice, but I have a feeling OP wants to play a sound in direct response to a key press rather than after typing a number and then pressing return. – Junuxx Jun 4 '12 at 3:04

The bell character as mentioned in the link below will solve your problem. You ought to trigger this when your condition suffices.

http://en.wikipedia.org/wiki/Bell_character

share|improve this answer

Depends on exactly what you're looking for.

As for Input: Either

raw_input('')

or Here, getch() like action. Either way, using ord() is probably a good start in checking for an int, and possibly this here (if you ignore the title and zip right to the answer ;) ).

As for Playing a Sound: Either

print('\a') // \a is the bell escape sequence

or Here, some external library.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.