diff --git a/guide/english/python/lists/list-index-method/index.md b/guide/english/python/lists/list-index-method/index.md index 842c0e0520..593428d72e 100644 --- a/guide/english/python/lists/list-index-method/index.md +++ b/guide/english/python/lists/list-index-method/index.md @@ -3,9 +3,9 @@ title: List Index Method --- ## List Index Method -Among the many functions which come along with the list data structure the `index()` returns the the first occurrence/index of the element in the list given as an argument to the function. +Among the many functions which come along with the list data structure, the `index()` returns the first occurrence/index of the element in the list given as an argument to the function. -Lists are the most basic Python data structure and stores a list of values in order (in comparison to dictionaries, which order doesn't matter). We retrieve the items by numerical index. +Lists are the most basic Python data structure and store a list of values in order (in comparison to dictionaries, which order doesn't matter). We retrieve the items by numerical index. Keeping in mind the fact that indexing starts from 0, or the first element is taken to be at the 0 index, let's have a look at some examples.