Let's say I have a list such as:
lst = ["Line1\r\nLine2\r\n", "Line3\r\nLine4\r\n", etc.]
Is there a nice pythonic way to split up the elements at the line endings and make them separate elements, ie
new_lst = ["Line1\r\n", "Line2\r\n", "Line3\r\n", "Line4\r\n"]
I know I could have a few extra lines of code to loop through the list, split up the elements and store them in a new list, but I'm relatively new to python and want to get in the habit of making use of all the cool features such as list comprehensions. Thanks in advance!