Created
June 8, 2014 22:00
-
-
Save Silverwolf90/fae712dcbc9a08f7c539 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
def scale_on_board(scale,fretboard): | |
for string_index, string in enumerate(fretboard): | |
for fret, pitch in enumerate(string): | |
if pitch in scale: | |
fretboard[string_index][fret] += "*"; | |
return fretboard |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment