Originally published at https://www.datacamp.com/community/tutorials/python-excel-tutorial...
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... (more…)
Read more »
In 2013, I spent 6 months converting 0install’s 29,215 lines of Python to OCaml (learning OCaml along the way).
In this post, I’ll describe the … (more…)
Read more »
Ori is a high-level wrapper around Python’s concurrent.futures module, designed to make multithreading and multiprocessing as easy as possible. (more…)
Read more »