使用简谱编写音乐的代码示例```pythonclass SimpleMusic: 定义简谱音符与频率的映射关系 notes_freq = { '1': 261.63, 中音Do '2': 293.66, Re '3': 329.63, Mi '4': 349.23, Fa '5': 392.00, Sol '6': 440.00, La '7': 493.88 Si...