Calling functions

--Originally published at Luis Santana's Blog

The first steps before ruling the world, if not the first step, is to learn how to create/call functions.

You should write “def” and then whatever name you want it to be. Don’t forget to end with  : ,  this way you are telling Python that you are done with that line.

Then you can continuo with your code and whenever you need to call your function again it will be a lot easier!

calling