Function in Python | Class-12: Computer Science | Important Program-1

Опубликовано: 24 Март 2026
на канале: Technology Planet
161
3

Function in Python | Class-12: Computer Science | Important Program-1
Write a function INDEX_LIST(L), where L is the list of elements passed
as argument 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]