When working on an exercise, you get a coding editor in your web browser where you can type the python code for the exercise, run it and see the output. You don't need to have python or any other software installed on your computer....
We've integrated a python execution environment into the Playful Python site! Not only can you read code, you can now type it out and execute it, online, right here on the site 😎...
So far, if you wanted to do web development, there was only one choice - Javascript. But that changed now. In this new series, we explore how to use pyscript to run python on the browser....
The foundation of programming is to take smaller abstractions and make bigger abstractions out of it. In the previous articles in this series, we learned about using functions to create abstractions. Now let us look at how to join them up together using functional composition....
Functions that return the same output when given the same input are called pure functions. Then what are impure functions?...
You come across decorators when working in many frameworks. Here is how they work....