Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49134c9 commit 3c4be81Copy full SHA for 3c4be81
Notes/01_Introduction/04_Strings.md
@@ -77,7 +77,7 @@ You can also slice or select substrings specifying a range of indices with `:`.
77
```python
78
d = a[:5] # 'Hello'
79
e = a[6:] # 'world'
80
-f = a[3:8] # 'lowo'
+f = a[3:8] # 'lo wo'
81
g = a[-5:] # 'world'
82
```
83
0 commit comments