str.split('\n') will do the trick:
In [135]: text.split('\n')
Out[135]:
['"',
'=========New Coffee Order===============',
'=========Bean Information===============',
'Type: Ethiopian',
'Origin: Single',
'',
'=========Roaster/price==================',
"Steve Beans",
'8.50/lb',
'',
'Everyday Espresso',
'10.00/lb',
'',
'Critical Coffee ',
'6.00/lb',
'',
'',
'=========End Coffee Order==============',
'"']
, , :
for line in text.split('\n'):
...
@Robα΅© :
In [137]: %timeit text.splitlines()
1000000 loops, best of 3: 1.8 Β΅s per loop
In [138]: %timeit text.split('\n')
1000000 loops, best of 3: 1.31 Β΅s per loop