diff options
-rw-r--r-- | bot/resources/tags/slicing.md | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/bot/resources/tags/slicing.md b/bot/resources/tags/slicing.md index 5e28dbb52..717fc46b7 100644 --- a/bot/resources/tags/slicing.md +++ b/bot/resources/tags/slicing.md @@ -8,8 +8,6 @@ embed: **Examples** ```py >>> letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g'] ->>> letters -['a', 'b', 'c', 'd', 'e', 'f', 'g'] >>> letters[2:] # from element 2 to the end ['c', 'd', 'e', 'f', 'g'] >>> letters[:4] # up to element 4 |