nwhitehead / pyfluidsynth

Python bindings for FluidSynth
GNU Lesser General Public License v2.1
197 stars 56 forks source link

README.md: print() is a function in Python 3 #56

Closed cclauss closed 4 months ago

cclauss commented 4 months ago
- print len(samps)
- print 'Starting playback'
+ print(len(samps))
+ print('Starting playback')