I have the details of an amazon order, the literal string is separated by the newline character \n.
str = 'Linon Hampton Stool Fabric Top, 24-inch \nSold by: Amazon.com Services, Inc \n$33.99'
I want to split it up into n number of strings for each new line so that it looks like.
str1 = 'Linon Hampton Stool Fabric Top, 24-inch'
str2 = 'Sold by: Amazon.com Services, Inc '
str3 = '$33.99'