From fb8ad22df1ef5e96bf0af20fdce4d681f8e5c5ab Mon Sep 17 00:00:00 2001 From: Keyacom <70766223+Keyacom@users.noreply.github.com> Date: Mon, 31 Oct 2022 09:11:05 +0100 Subject: Simplify REPL example --- bot/resources/tags/slicing.md | 2 -- 1 file changed, 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 -- cgit v1.2.3