Created
May 5, 2018 12:42
-
-
Save nngogol/624ef8ea054338528f8858411c2e5150 to your computer and use it in GitHub Desktop.
Sound, generated by python.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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