Tuesday, October 20, 2015

No more Python 2.8

I use python for my daily programming stuff and I am so happy I can use it in my daily programming stuff, Python language it so beautiful, effective and clean.

Why it's beautiful? because it's easy to learn, easy to implement, easy to extends (we can extends python using C or C++). It's good programming language for people who want to learn basic programming concepts. But don't forget to have deep concept in C programming language :D, C is important thing and one thing you need to know about python it made from C.

Why it's effective? python syntax and idiom is well mature. We can create complicated stuff with python using few lines of code. Python built in method is complete you don't really need third party library if you not use it on specific purpose.

Why it's clean? Python functions have no explicit begin or end, and no curly braces to mark where the function code starts and stops. The only delimiter is a colon (:) and the indentation of the code itself. Python block of code is separate with indentation not curly braces so it clean and you will always got clean code structure.

But python 2.7 is the last python 2 development and will not supported in the future python release, because python development team decided to support python 3 version only. Don't worry python 3.4 is best python version ever, you can convert code from python 2.7 to python 3. :-) smart.

No comments:

Post a Comment