diff --git a/06_Day_Tuples/06_tuples.md b/06_Day_Tuples/06_tuples.md index 5c155034e..db6571bc2 100644 --- a/06_Day_Tuples/06_tuples.md +++ b/06_Day_Tuples/06_tuples.md @@ -96,8 +96,9 @@ len(tpl) last_fruit = fruits[last_index] ``` -- Negative indexing - Negative indexing means beginning from the end, -1 refers to the last item, -2 refers to the second last and the negative of the list/tuple length refers to the first item. +- Negative indexing + means beginning from the end, -1 refers to the last item, -2 refers to the second last and the negative of the list/tuple length refers to the first item. + ![Tuple Negative indexing](../images/tuple_negative_indexing.png) ```py