Function
subdominant7
Return the subdominant seventh chord in key.
(key)
Source from the content-addressed store, hash-verified
| 626 | |
| 627 | |
| 628 | def subdominant7(key): |
| 629 | """Return the subdominant seventh chord in key.""" |
| 630 | return sevenths(key)[3] |
| 631 | |
| 632 | |
| 633 | def dominant(key): |
Tested by
no test coverage detected