From 42b7306f766c5b1d844b7a21bf25dfc4054837a2 Mon Sep 17 00:00:00 2001 From: tachoni <44578437+tachoni@users.noreply.github.com> Date: Sat, 19 Jan 2019 03:59:12 +0300 Subject: [PATCH] Fixed typo on line 6 (#31809) The text "the" was repeated and is now deleted. --- guide/english/python/lists/list-index-method/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.