Skip to content
anstepp edited this page Jun 4, 2020 · 2 revisions

A Part object contains a list of Measure objects. These objects are created from the list of Note objects that you feed the Part on instantiation.

Example:

list_of_notes = [Note(4,4,0) for x in range(10)]

time_signature = [(4,4)]

new_part = Part(list_of_notes, time_signature)
Clone this wiki locally