Python Regex Expand
Pythonic. There is definitively some things I love about python.
pattern = "([0-9]+)(\.?)(#?)([\w-])([0-9]?)"
for duration, dotted, sharp, pitch, octave in re.findall(pattern, tune_str):
Pythonic. There is definitively some things I love about python.
pattern = "([0-9]+)(\.?)(#?)([\w-])([0-9]?)"
for duration, dotted, sharp, pitch, octave in re.findall(pattern, tune_str):