492 B
492 B
String splitting
TODO: ADD MORE
- The example solution uses
str.split()to break the passed in markdown string into a list of lines broken up by the\ncharacter. The alternate Python example solution usesstr.splitlines()for the same effect across all line end characters. markdown - the example uses
str.splitwith and without separators to break the passed in string into "rows" and then "elements" matrix