Advertisements
Advertisements
प्रश्न
Write a function INDEX_LIST(L), where L is the list of elements passed as arguments to the function. The function returns another list named ‘indexList’ that stores the indices of all Non-Zero Elements of L.
For example:
If L contains [12, 4, 0, 11, 0, 56]
The indexList will have - [0, 1, 3, 5].
टिप्पणी लिखिए
उत्तर
def INDEX LIST(L):
indexList=[]
for i in range(len(L)):
if L[i]!=0:
indexList.append (i)
return indexList
shaalaa.com
Function Returning Values
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?