数组遍历
1. for ( item in arr){…}
2. for ( i in arr.indeces ) {…} (遍历下标)
3. for ((index, item) in arr.withInfex()) {…} (遍历下标和元素)
4. arr.forEach {} ( 遍历元素 )
5. arr.forEachIndexed{index, item -> …}
环境:
Python 3.8.10
WSL2
问题描述:
尝试安装 pyaudio 时遇到的错误信息表示安装过程失败,原因是找不到 Python.h 头文件
error: subprocess-exited-with-error Building wheel for pyaudio (pyproject.toml) did not run successfully…