- 请在这里插入非格式化文字
def quickSort(arr): less = [] pivotList = [] more = [] if len(arr) <= 1: return arr else: pass