Python 3.6.3 is now available
Python 3.6.3 is now available. Python 3.6.3 is the third maintenance release of Python 3.6, which was initially released in 2016-12 to grea... (more…)
Read more »
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