Skip to content

Commit 32d445b

Browse files
committed
Added space to comma for str.split()
1 parent f0aa48e commit 32d445b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/concept/little-sisters-vocab/.docs/introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@ Strings can also be broken into smaller strings via [`<str>.split(<separator>)`]
164164

165165

166166
>>> cat_words = "feline, four-footed, ferocious, furry"
167-
>>> cat_words.split(',')
167+
>>> cat_words.split(', ')
168168
...
169-
['feline', ' four-footed', ' ferocious', ' furry']
169+
['feline', 'four-footed', 'ferocious', 'furry']
170170
```
171171

172172

0 commit comments

Comments
 (0)