From dd98ac4020831914cdef838acc34b9deef32c787 Mon Sep 17 00:00:00 2001 From: Dhrubaraj Pati Date: Mon, 26 May 2025 23:09:38 +0530 Subject: [PATCH] Update README.md --- 05_Lists/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/05_Lists/README.md b/05_Lists/README.md index 5f01b97..7304471 100644 --- a/05_Lists/README.md +++ b/05_Lists/README.md @@ -24,6 +24,7 @@ print(fruits[-1]) # Output: cherry ``` ### Slicing +**Slicing** in Python refers to extracting a portion (or "slice") of a sequence like a list, tuple, string, or any other iterable that supports indexing. ```python numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] print(numbers[2:6]) # Output: [2, 3, 4, 5]