Functions in Python

A function is a block of code that performs an operation usually a specific task.
Functions help break our program into smaller and modular chunks, making them resusable and redable. They prevent repetition of code.
You can pass data known as parameters… Read more

Similar

Guido van Rossum on Talk Python to Me

This post is written by Michele Pratusevich. I occasionally listen to a podcast called Talk Python to Me on my commute. Last week I listened to the 100th episode, where Guido van Rossum, the creator of the Python language, talks about how he got into prog... (more…)

Read more »