Benoit Hamelin

Adapting the cell width of Jupyter notebooks

When coding in Python Jupyter notebooks, one can control the width of the cell sequence, and thereby gain more horizontal visibility of both code and results. For that, run a cell with this code:

%%html
<style>.container { width:85% !important; }</style>

Source