Update split_lines.md

This commit is contained in:
Alex
2019-09-15 14:36:30 +03:00
committed by GitHub
parent eabb8e982a
commit 59863f7170

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