コード例 #1
0
ファイル: scales.py プロジェクト: wberry/Bass-Grade-Eight
def get_harmonic_minor():
    return gradefuncs.get_note() + " Harmonic Minor"
コード例 #2
0
ファイル: scales.py プロジェクト: wberry/Bass-Grade-Eight
def get_dorian():
    return gradefuncs.get_note() + " Dorian"
コード例 #3
0
ファイル: scales.py プロジェクト: wberry/Bass-Grade-Eight
def get_whole_tone():
    return gradefuncs.get_note() + " Whole Tone"
コード例 #4
0
ファイル: scales.py プロジェクト: wberry/Bass-Grade-Eight
def get_lydian():
    return gradefuncs.get_note() + " Lydian"
コード例 #5
0
ファイル: scales.py プロジェクト: wberry/Bass-Grade-Eight
def get_chromatic():
    return gradefuncs.get_note() + " Chromatic"
コード例 #6
0
ファイル: scales.py プロジェクト: wberry/Bass-Grade-Eight
def get_mixolydian():
    return gradefuncs.get_note() + " Myxolydian"
コード例 #7
0
def name_chord():
    position = random.choice(["I", "II", "III", "IV", "V", "VI"])
    key = gradefuncs.get_note()
    return f'Name the chord built from position {position} in the key of {key}'