23 Nov 2022 Juliano Luiz Faccioni Python Scripts vs. Jupyter Notebooks: Pros and Cons Learn the ins and outs of Python scripts and Jupyter Notebooks, including when to use each one. There are many tools available to Python developers. Since this language’s early days, Python scripts have been the canonical way of writing and sharing Python code. But in the past few years, Jupyter Notebooks have gained considerable recognition among data scientists as a powerful tool for testing ideas and sharing results. But what exactly sets Jupyter Notebooks apart from Python scripts? Read more 7 Nov 2022 Xavier Rigoulet 10 Useful Tips for Writing Python Scripts Would you like some helpful tips for Python scripts? Read on to get some advice from a pro! In this article, I will give you some Python tips and tricks alongside script examples to help you make the best out of Python. First, let's define what a Python script is. A Python script is a set of instructions written in Python to ask the computer to perform some tasks. Read more 27 May 2021 Xavier Rigoulet How to Rename Files Python How much time do you spend renaming your files? Do you wonder if you could do it more quickly and easily? What if you could rename a huge number of files in the blink of an eye? Python comes with multiple built-in modules and functions to do exactly that. In this article, you will learn how to use many of these modules and functions to rename and move files in Python. Read more