Archive for the 'Python' Category

Riding the snakes with Python

Python Logo

I’ve been reading about Python in my free time and I’m amazed how cool it is.

It features dynamic variable instantiation (this means you don’t have to do the boring job of instantiating all variables to a certain type, like in C or Java), it’s pretty fast (at least two times faster than PHP, for example) and, the Python code syntax is also very pleasant to look at, due to its indentation rule: every loop, condition or any other structure needs to be indented - there is no curly braces or begins/ends, here is an example:

Python Syntax

Continue reading ‘Riding the snakes with Python’