Return the dominant chord in key. Example: >>> dominant('C') ['G', 'B', 'D']
(key)
| 631 | |
| 632 | |
| 633 | def dominant(key): |
| 634 | """Return the dominant chord in key. |
| 635 | |
| 636 | Example: |
| 637 | >>> dominant('C') |
| 638 | ['G', 'B', 'D'] |
| 639 | """ |
| 640 | return triads(key)[4] |
| 641 | |
| 642 | |
| 643 | def dominant7(key): |