Build a dominant seventh on note. Example: >>> dominant_seventh('C') ['C', 'E', 'G', 'Bb']
(note)
| 273 | |
| 274 | |
| 275 | def dominant_seventh(note): |
| 276 | """Build a dominant seventh on note. |
| 277 | |
| 278 | Example: |
| 279 | >>> dominant_seventh('C') |
| 280 | ['C', 'E', 'G', 'Bb'] |
| 281 | """ |
| 282 | return major_triad(note) + [intervals.minor_seventh(note)] |
| 283 | |
| 284 | |
| 285 | def half_diminished_seventh(note): |
no test coverage detected