Files
30-seconds-of-code/snippets/split_lines.md
Isabelle Viktoria Maciohsek bff03eb7f4 Update snippet descriptions
2020-11-02 19:28:35 +02:00

466 B

title, tags
title tags
split_lines string,beginner

Splits a multiline string into a list of lines.

  • Use str.split() and '\n' to match line breaks and create a list.
  • str.splitlines() provides similar functionality to this snippet.
def split_lines(s):
  return s.split('\n')
split_lines('This\nis a\nmultiline\nstring.\n')
# ['This', 'is a', 'multiline', 'string.' , '']