import winsound winsound.PlaySound(filename [as string with path if necessary], flag [integer zB 1 for asynchronous] )
This works fine with Windows 8 and Python 2.7.6 and * .wav files
Various flags that you can check, enter winsound. and find the autocomplete list.
Flags are similar to SND_FILENAME or similar.
If you enter them in an editor, for example: *winsound.SND_FILENAME you get an integer to apply to the PLaySound from above
Good luck
source share