def seventh(note, key): """Return the seventh chord on note in key. Example: >>> seventh('C', 'C') ['C', 'E', 'G', 'B'] """ return triad(note, key) + [intervals.seventh(note, key)]
def seventh(note, key): """Returns the seventh chord on note in key. Example: {{{ >>> seventh("C", "C") ["C", "E", "G", "B"] }}}""" return triad(note, key) + [intervals.seventh(note, key)]
def seventh(note, key): """Returns the seventh chord on note in key. Example: {{{ >>> seventh(\"C\", \"C\") [\"C\", \"E\", \"G\", \"B\"] }}}""" return triad(note, key) + [intervals.seventh(note, key)]