From 3c4be8138a14584d33f8e5061ce966be3701e5e0 Mon Sep 17 00:00:00 2001 From: David Beazley Date: Fri, 29 May 2020 17:49:13 -0500 Subject: [PATCH] Fix typo --- Notes/01_Introduction/04_Strings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Notes/01_Introduction/04_Strings.md b/Notes/01_Introduction/04_Strings.md index 66e30fd..5a1957c 100644 --- a/Notes/01_Introduction/04_Strings.md +++ b/Notes/01_Introduction/04_Strings.md @@ -77,7 +77,7 @@ You can also slice or select substrings specifying a range of indices with `:`. ```python d = a[:5] # 'Hello' e = a[6:] # 'world' -f = a[3:8] # 'lowo' +f = a[3:8] # 'lo wo' g = a[-5:] # 'world' ```