Skip to content

Instantly share code, notes, and snippets.

@nngogol
Created May 5, 2018 12:42
Show Gist options
  • Save nngogol/624ef8ea054338528f8858411c2e5150 to your computer and use it in GitHub Desktop.
Save nngogol/624ef8ea054338528f8858411c2e5150 to your computer and use it in GitHub Desktop.
Sound, generated by python.
import winsound
notes = {'C':0, 'D':2, 'E':4, 'F':5, 'G':7, 'A':9, 'B':11}
def play_note(note, duration=500):
winsound.Beep(int(256*(2**(notes[note]/12))), duration)
song = "E E F G G F E D C C D E E D D".split()
for note in song:
play_note(note)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment