Example #1
0
def majchord(note):
    root = notes.con_note(note)
    first = root
    third = root + 4
    fifth = root + 7
    print(notes.num_to_note(first), notes.num_to_note(third),
          notes.num_to_note(fifth))
Example #2
0
def minchord(note):
    root = notes.con_note(note.upper())
    first = root
    third = root + 3
    fifth = root + 7
    print(notes.num_to_note(first), notes.num_to_note(third),
          notes.num_to_note(fifth))
Example #3
0
def seventh(note):
    root = notes.con_note(note.upper())
    first = root
    third = root + 4
    fifth = root + 7
    seventh = root + 11
    print(notes.num_to_note(first), notes.num_to_note(third),
          notes.num_to_note(fifth), notes.num_to_note(seventh))
Example #4
0
import notes


start = input("Enter Starting Note: \n")

s = start.upper()

root = notes.con_note(s)
# print(root)
# root = int(root)

first = root
third = root + 4
fifth = root + 7
seventh = root + 11

# print(first, third, fifth)

print (notes.num_to_note(first), notes.num_to_note(third), notes.num_to_note(fifth), notes.num_to_note(seventh))
Example #5
0
import config
import notes

start = input("Enter Starting Note: \n")

s = start.upper()

root = notes.con_note(s)
# print(root)
# root = int(root)

first = root
third = root + 3
fifth = root + 7

# print(first, third, fifth)

print(notes.num_to_note(first), notes.num_to_note(third),
      notes.num_to_note(fifth))