How to Get Index of List Element in Python

In this article, you will learn how to get index of list element in Python. Let’s say you have a list of cardinal directions. directions…

The post How to Get Index of List Element in Python appeared first on CodeSource.io.


This content originally appeared on CodeSource.io and was authored by Ariessa Norramli

In this article, you will learn how to get index of list element in Python.

Let’s say you have a list of cardinal directions.

directions = ['North', 'South', 'East', 'West']

Get Index of List Element in Python

In order to get the index of a list element, you can use the index() method.

directions = ['North', 'South', 'East', 'West']

# Find index of element 'East'
index = directions.index('East')

# Display index of element 'East'
print('Index of East:', index)
# The index of East: 2

Note: The index() method functions by returning the index of the supplied list element.

The post How to Get Index of List Element in Python appeared first on CodeSource.io.


This content originally appeared on CodeSource.io and was authored by Ariessa Norramli


Print Share Comment Cite Upload Translate Updates
APA

Ariessa Norramli | Sciencx (2021-02-28T17:30:22+00:00) How to Get Index of List Element in Python. Retrieved from https://www.scien.cx/2021/02/28/how-to-get-index-of-list-element-in-python/

MLA
" » How to Get Index of List Element in Python." Ariessa Norramli | Sciencx - Sunday February 28, 2021, https://www.scien.cx/2021/02/28/how-to-get-index-of-list-element-in-python/
HARVARD
Ariessa Norramli | Sciencx Sunday February 28, 2021 » How to Get Index of List Element in Python., viewed ,<https://www.scien.cx/2021/02/28/how-to-get-index-of-list-element-in-python/>
VANCOUVER
Ariessa Norramli | Sciencx - » How to Get Index of List Element in Python. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/02/28/how-to-get-index-of-list-element-in-python/
CHICAGO
" » How to Get Index of List Element in Python." Ariessa Norramli | Sciencx - Accessed . https://www.scien.cx/2021/02/28/how-to-get-index-of-list-element-in-python/
IEEE
" » How to Get Index of List Element in Python." Ariessa Norramli | Sciencx [Online]. Available: https://www.scien.cx/2021/02/28/how-to-get-index-of-list-element-in-python/. [Accessed: ]
rf:citation
» How to Get Index of List Element in Python | Ariessa Norramli | Sciencx | https://www.scien.cx/2021/02/28/how-to-get-index-of-list-element-in-python/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.