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:
- Go to File -> Preferences -> Settings or press Ctrl+Shift+p
- Search for 'terminal scrollback'
- Change the value to
100000
- Reload the vscode window
Post a Comment for "Vsc Python Complier Not Printing The Whole List"