qq85715512

Results 1 comments of qq85715512

python在执行代码时如果有缩进报错,但是在终端可以正常运行: ![image](https://github.com/purocean/yn/assets/6128123/e9198124-4028-44fc-8137-5a73fe8e706e) 代码块如下: ````python # --run-- def quick_sort(arr, i, j): if i < j: idx = get_index(arr, i, j) quick_sort(arr, i, idx) quick_sort(arr, idx + 1, j) def get_index(arr, i,...