Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3c4be81

Browse files
committed
Fix typo
1 parent 49134c9 commit 3c4be81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Notes/01_Introduction/04_Strings.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ You can also slice or select substrings specifying a range of indices with `:`.
7777
```python
7878
d = a[:5] # 'Hello'
7979
e = a[6:] # 'world'
80-
f = a[3:8] # 'lowo'
80+
f = a[3:8] # 'lo wo'
8181
g = a[-5:] # 'world'
8282
```
8383

0 commit comments

Comments
 (0)