Example #1
0
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)]
Example #2
0
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)]
Example #3
0
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)]
Example #4
0
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)]
Example #5
0
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)]