Update introduction.md (#2442)

Closed code block on line 138.
This commit is contained in:
BethanyG
2021-05-29 19:31:34 -07:00
committed by GitHub
parent 7d74a8c987
commit 3536901537

View File

@@ -135,7 +135,7 @@ sun_and_moon = sun_and_moon = '🌞🌙🌞🌙🌞🌙🌞🌙🌞'
>>> sun_and_moon[1:-1:2]
'🌙🌙🌙🌙'
```
Strings can also be broken into smaller strings via [`<str>.split(<separator>)`][str-split], which will return a `list` of substrings.
The list can then be further indexed or split, if needed.