Return

2021-12-07 Thread vani arul
Hey There,
Can someone help to understand how a python function can return value with
using return in the code?
It is not not about explicit or implicit function call.


Thanks
Vani
-- 
https://mail.python.org/mailman/listinfo/python-list


Selection sort

2021-12-24 Thread vani arul
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))
-- 
https://mail.python.org/mailman/listinfo/python-list