Pygame is the go-to library for making multimedia applications, especially games, in Python. The official website is http://www.pygame.org/.
pygame.mixer.init(frequency=22050, size=-16, channels=2, buffer=4096)
pygame.mixer.pre_init(frequency, size, channels, buffer)
pygame.mixer.quit()
pyg...