I have this:
test = ['hey\nthere']
Output: ['hey\nthere']
And when I insert in into the DataFrame it stays the same way:
test_pd = pd.DataFrame({'salute': test})
Output:
salute
0 hey\nthere
But I want it to be shown properly:
salute
0 hey
there
How could I do this?