Modules and libraries

This time we are going to see the Modules or Libraries what are those things, in simple terms they are Python files that contain definitions and statements, this ones can be imported or well created by yourself. To import one of this modules and use it in your program is very easy, you just type…

Calling & Creating Functions

I think is time to start with functions, i’m no expert at this topic so maybe we can learn together, let’s go First, what is a function? Very simple, is a piece of reusable code that can be call upon whenever you need it. In other words, if you are going to repeat a code…