UPDATE: I found out my actual issue is that VSCode does not use ipthon (as far as I can tell) in the debugging console (I am used to sypder). VSCode says it supports Jupiter notebooks but I cannot find any reference to how to use ipthon when debugging although there is an an old comment on stackoverfow saying its coming in a future version but the link is dead. So for now its back to spyder. I left the original question for those newbies to VSCode who are stumped by the same issue.
Sorry for the very simple question but I just started using VS Code and when debugging python scripts the output in the debug console escapes line breaks. How do I stop that behavior?
For example :
df = pd.DataFrame(np.arange(10),columns=['Close'])
If I enter df into the debug console I get:
df
Close\n0 0\n1 1\n2 2\n3 3\n4 4\n5 5\n6 6\n7 7\n8 8\n9 9