Beispiel #1
0
def get_harmonic_minor():
    return gradefuncs.get_note() + " Harmonic Minor"
Beispiel #2
0
def get_dorian():
    return gradefuncs.get_note() + " Dorian"
Beispiel #3
0
def get_whole_tone():
    return gradefuncs.get_note() + " Whole Tone"
Beispiel #4
0
def get_lydian():
    return gradefuncs.get_note() + " Lydian"
Beispiel #5
0
def get_chromatic():
    return gradefuncs.get_note() + " Chromatic"
Beispiel #6
0
def get_mixolydian():
    return gradefuncs.get_note() + " Myxolydian"
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}'