When I run:
JavaScript
x
3
1
from IPython.core.display import display, HTML
2
display(HTML("<style>.container { width:100% !important; }</style>"))
3
I got
/var/folders/6g/6gqq4lhx4jbcl4_tbrsxj3xr0000gq/T/ipykernel_5625/333572366.py:1: DeprecationWarning: Importing display from IPython.core.display is deprecated since IPython 7.14, please import from IPython display
from IPython.core.display import display, HTML
Advertisement
Answer
replace
JavaScript
1
2
1
from IPython.core.display import display, HTML
2
with
JavaScript
1
2
1
from IPython.display import display, HTML
2
source here