I have a data frame, say df, and when I go with print(df) or repr(df), I get a not very palatable output.
print(df) result:
but when I just put a naked df in the cell and run it, I get something like this:
Question: Which function was implicitly executed to produce that output? I would like to put it in a for loop and display many dataframes that way.


