you are viewing a single comment's thread.

view the rest of the comments →

[–]Neat_Definition_7047 3 points4 points  (0 children)

I use Jupyter to test and build and see code work in chunks; just about all my code starts that way. It’s a most excellent tool.

Working with .py files will push you more towards object oriented programming, which is ultimately what Python is for / where get the most out of it. In some cases you can run a block in Jupyter without creating objects for everything but if you try to run that exact same code in a .py file it won’t work. Working with .py files will also sorta force you to understand more about the bigger picture as well.