EAT-SLEEP-CODE-REPEAT

Life is too short. Programming book is too thick. I am too lazy to practice all.

Python

파이썬의 원칙(The Zen of Python)_import this

codeho 2021. 2. 7. 23:24
반응형

파이썬의 원칙(The Zen of Python)_import this

파이썬의 선(The Zen of Python)은 좋은 파이썬 코드를 작성하기 위한 간단한 원칙입니다. 인터프리터에서 import this를 입력하면 볼 수 있습니다. 

>>> import this
The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!

팀 피터스(Tim Peters)가 썼습니다. 

몇 문장만 보면 

1.  Simple is better than complex. 단순한 것이 낫다

단순 코드는 관리하기 쉽고, 다른 프로그래머가 그 코드를 바탕으로 응용하기도 쉽기 때문입니다. 

 

2. Readability counts. 코드를 읽기 쉽게 작성하자.

복잡한 코드를 쓸 수 밖에 없는 상황이라면 시간을 들여 주석을 달아야 할 것입니다.

 

3. Now is better than never. 지금하자

지금 해결할 수 있는 문제에 집중하자는 내용 같습니다. 평생 하지 않는 것보다 나으니까요. 

이 문장은 참 많은 생각이 들게 하네요.  

반응형