とにかく、pygameのような外部ライブラリをインポートせずにサウンドを再生できるのだろうかと思っていました. このようなもの:
import os
import sound
mysound = sound.load("mysound.mp3") # gets the sound "mysound.mp3"
while True:
input("Press enter to play sound")
sound.play(mysound) # plays the sound mysound
os.system('cls') # clears the console