Starting up a series of Python language
Posted on Thu 30 July 2020 in Programming • 2 min read •
Python is an example of language design done well. The language is equally suited for learning as the first computer language (for kids) and running enterprise-level code (as done in many startups and established companies) at the same time. However, this incredible approachability of the language leads to very low quality of code (due non-pythonic way of writing code) and many misinterpretations about it. This series about generic python show use-cases and examples of pythonic code, which are clear and effective.
Let us start with Zen of Python
by Tim Peters, which can be accessed by code import this
in python interpreter. The principles are:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
|
We will use these principles as general guidance in this series.