Selection sort

Barry Scott barry at barrys-emacs.org
Fri Dec 24 09:39:42 EST 2021



> On 24 Dec 2021, at 14:22, vani arul <arulvani66 at gmail.com> wrote:
> 
> Hello,
> I am trying write a code.Can some help me find the error in my code.
> Thanks!
> 
> 
> def selectionsort(arr):
>   # le=len(arr)
>    for b in range(0,len(arr)-1):
>        pos=b
>        for a in range(b+1,len(arr)-1):
>            if arr[b]>arr[a+1]:
>                arr[b],arr[a+1]=arr[a+1],arr[b]
>    return arr
> 
> arr=[3,5,9,8,2,6]
> print(selectionsort(arr))

What are you expecting the code to do?

Barry



> --

> 
> https://mail.python.org/mailman/listinfo/python-list
> 



More information about the Python-list mailing list