Hey everyone! I'm new to coding and have started learning Python. I'm using Visual Studio Code, but I'm finding that when I run my code in the terminal, there's a ton of extra text that makes it hard to focus on my code's actual output. Is there a more aesthetically pleasing or organized way to run my code?
3 Answers
You might want to try Jupyter Notebooks! They're awesome for running Python code and can be used directly from VS Code without needing to set up a full JupyterLab server. This way, you get a cleaner view of your outputs. Check out the VS Code docs on how to set it up!
Honestly, you’ll get better at filtering through logs as you gain more experience. Logs are just part of coding life, so it's good to get used to analyzing them to find the important bits.
Notebooks are a great option! They allow you to run code in chunks and see your output right after each cell, which makes it much easier to read and work with your results.
Could you recommend a specific notebook tool?

Thanks a lot! I'll definitely check that out.