Python: Find the index of an item in a specified list
Find Index of List Item
Write a Python program to find the index of an item in a specified list.
Example - 1 :
Example - 2 :
Example - 3 :
Sample Solution:
Python Code:
# Define a list 'num' containing a sequence of numbers
num = [10, 30, 4, -6]
# Use the 'index' method to find the index of the element with the value 30 in the list 'num'
# The result will be the position of the first occurrence of 30 in the list
print(num.index(30))
Sample Output:
1
Flowchart:
Python Code Editor:
Previous: Write a Python program to convert a list of characters into a string.
Next: Write a Python program to flatten a shallow list.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics