I am trying to write (excel file) /print a dataframe , where column values consists of next line (\n) .
>>> textbox = ""
>>> textbox+=str('So, so you think you can tell \n')
>>> textbox+=str('Heaven from hell')
>>> print textbox
So, so you think you can tell
Heaven from hell
>>> df1 = pd.DataFrame({'lyric':[textbox]})
>>> df1
lyric
0 So, so you think you can tell \nHeaven from hell
>>> print df1
lyric
0 So, so you think you can tell \nHeaven from hell
So when i print the df or write a to excel file , I see that instead of next line , "\n" is printed.
How to print next line?