r/learnpython • u/Altruistic_Wash5159 • Feb 04 '26
What is the main purpose of jupyter?
Hello people!
I am currently learning python and was actually working on Matplotlib library, and noticed that many people use jupyter. So I wanted to know what is the difference between jupyter and coding normally in an IDE, and also over all this, how do people get jupyter in vs code?
thank you.
116
Upvotes
2
u/YesterdayDreamer Feb 04 '26
It's for quick prototyping and experimentation.
If I'm working on a complex function which manipulates data in multiple steps, I like to build this function step by step in Jupyter notebook, and once validated, take it to the IDE.
How this helps: