Merge pull request #94 from zveryansky/patch-1

Update split_lines.md
This commit is contained in:
Angelos Chalaris
2019-09-16 05:05:38 +03:00
committed by GitHub

View File

@ -9,7 +9,7 @@ Use `str.split()` and `'\n'` to match line breaks and create a list.
```py
def split_lines(str):
str.split('\n')
return str.split('\n')
```
```py