MCPcopy Create free account
hub / github.com/bspaans/python-mingus / subdominant

Function subdominant

mingus/core/chords.py:618–625  ·  view source on GitHub ↗

Return the subdominant chord in key. Example: >>> subdominant('C') ['F', 'A', 'C']

(key)

Source from the content-addressed store, hash-verified

616
617
618def subdominant(key):
619 """Return the subdominant chord in key.
620
621 Example:
622 >>> subdominant('C')
623 ['F', 'A', 'C']
624 """
625 return triads(key)[3]
626
627
628def subdominant7(key):

Callers 1

IVFunction · 0.85

Calls 1

triadsFunction · 0.85

Tested by

no test coverage detected