新建一个列表music,里面包含了do\re\mi\fa\sol\la\si七个音,打印如下结果: the no.1 pitch is "do"
时间: 2023-06-29 13:15:14 浏览: 195
1-d~music.rar_1D MUSIC algorithm_doa music_music doa matlab_一维MU
好的,你可以使用以下代码来实现:
```python
music = ['do', 're', 'mi', 'fa', 'sol', 'la', 'si']
print('the no.1 pitch is "{}"'.format(music[0]))
```
输出结果为:
```
the no.1 pitch is "do"
```
其中,`format()` 方法可以将字符串中的占位符 `{}` 替换成指定的值。
阅读全文