In [ ]:
import pandas as pd
import itables
itables.init_notebook_mode(all_interactive=True)
In [ ]:
df = pd.DataFrame([["some_data"]])
print("this will be rendered")
display(df)
print("this and the following table are not rendred")
display(df)
import pandas as pd
import itables
itables.init_notebook_mode(all_interactive=True)
df = pd.DataFrame([["some_data"]])
print("this will be rendered")
display(df)
print("this and the following table are not rendred")
display(df)