diff --git a/22-Day-22-Introduction-to-Lists/.tutorial/02-lists_indexes.md b/22-Day-22-Introduction-to-Lists/.tutorial/02-lists_indexes.md index d1465d8..05a476b 100644 --- a/22-Day-22-Introduction-to-Lists/.tutorial/02-lists_indexes.md +++ b/22-Day-22-Introduction-to-Lists/.tutorial/02-lists_indexes.md @@ -153,6 +153,6 @@ print(animals[1:8:3]) ``` ### Output: ``` -['dog', 'pig', 'goat +['dog', 'pig', 'goat] ``` -Here, jump index is 3. Hence it prints every 3rd element within given index. \ No newline at end of file +Here, jump index is 3. Hence it prints every 3rd element within given index.