def quick_sort(array, start, end):
    if start >= end:
        return
    p = partition(array, start, end)
    quick_sort(array, start, p-1)
    quick_sort(array, p+1, end)
I have tried this code (a fragment of quick sort) in python.
Can the return statement be used as such without returning any value?
 
     
     
    