【Python】Zen of Python & PEP8検定試験を受けてみた
Python初学者が「Zen of Python & PEP 8 検定試験」を受けてみて感じたことのメモ。
1.Zen of Python & PEP 8 検定試験を受けてみた感想
2.Zen of Python & PEP 8 検定試験を受けてみた結果
1.Zen of Python & PEP 8 検定試験を受けてみた感想
率直にいうと、Zen of Python と PEP 8 にきちんと目を通す機会を得ることができるという意味ではとても有意義な試験だと感じた。難易度は高くないがきちんと目を通しておかないと高得点はとれないようにできている。
https://www.pythonic-exam.com/exam/pythonzen-pep-8
ちなみにPEP8はPythonのコーディング規約。Pythonではインデントはスペース4文字にしましょうとか、importの順番は標準ライブラリ⇒サードパーティライブラリ⇒自作ライブラリの順にしましょうとか、そういう標準的なルールがまとめられたもの。
https://pep8-ja.readthedocs.io/ja/latest/
また、Zen of PythonとはPythonプログラミングの基本ルールとか哲学について 「Python の禅」としてティム・ピーター氏が書いたもの。その全文はPythonインタプリタ上で以下を実行することでも見ることができる。
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!
和訳はこの辺で確認。
https://qiita.com/IshitaTakeshi/items/e4145921c8dbf7ba57ef