mirror of
https://github.com/kennethreitz/pytheory.git
synced 2026-06-05 23:00:20 +00:00
11 lines
229 B
Python
11 lines
229 B
Python
from pprint import pprint
|
|
import pytheory
|
|
from pytheory import TonedScale, Tone
|
|
|
|
# print(c)
|
|
# print(c.subtract(1))
|
|
# print(c.add(1))
|
|
c = TonedScale(tonic="C4").scales["major"]
|
|
print(c[1].pitch())
|
|
# print(pytheory.western.scales)
|