From 66d6f5c3c78ad9c9ee178d4f0f03b465d3f041f8 Mon Sep 17 00:00:00 2001 From: Aditya Bansal <103448377+AdityaBansal2310@users.noreply.github.com> Date: Thu, 14 Sep 2023 14:18:31 +0530 Subject: [PATCH] Update 02-lists_indexes.md --- 22-Day-22-Introduction-to-Lists/.tutorial/02-lists_indexes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.