Is it possible for VS Code notebooks to display my pandas dataframe the same way it does alone as when running in a loop?
If I call df at the end of a cell, I get a beautiful output
df
I'm making many dataframes in a loop and want to inspect them. But the output doesn't look very nice.
for i in range(N):
df = make_df(N)
print(df)
Eww. It even goes over 2 lines :(
I have read through this question - Pretty print a pandas dataframe in VS Code - and the tabulate package is helpful but it isn't the same as native VS Code output.

