VScode Comment étendre la taille de la sortie dans Jupyter Notebook

# YOU CAN TRY THESE 4 STEPS:
# working with numpy
np.set_printoptions(edgeitems=25, linewidth=100000)

# working with pandas
pd.options.display.max_rows = 10000000

# In VSCODE SETTINGS (UI) type "Jupyter: Max Output Size" and set to 0 or high value
# In VSCODE SETTINGS (UI) type "Jupyter: Text Output Limit" and set to 0 or high value
Tirbo06