Pandas and jupyter notebook are not working as intended on my computer. This is the code:
import pandas as pd
pd.set_option("max_colwidth", 4, "display.max_rows", 5)
pd.DataFrame({1: ['1' * 1000] * 10000000})
But as you can see in the screenshot below, neither of the settings are working

I want the 1's to be truncated and the rows as well but it isn't working
