Skip to content Skip to sidebar Skip to footer

Vsc Python Complier Not Printing The Whole List

I use Visual Studio Code for any coding and recently I noticed a strange thing. Whenever I try to print a really long list, the list is not printed completely, it is cut off. prime

Solution 1:

I have tried your code in vscode, you need to increase the Integrated:Scrollback setting for terminal in your vscode settings:

  1. Go to File -> Preferences -> Settings or press Ctrl+Shift+p
  2. Search for 'terminal scrollback'

enter image description here

  1. Change the value to 100000
  2. Reload the vscode window

Post a Comment for "Vsc Python Complier Not Printing The Whole List"