example.py has some code that creates a MIDI file based from whatever note blocks appear above it (however many there are), like this:
#Note block
track = 0
channel = 0
pitch = 60
time = 0
duration = 1
volume = 100
If I have a bunch of these on example2.py, what code can I write on example.py that brings them in verbatim? i.e., preserves them as variables in the structure in which they are written?
Thanks in advance.