[摘记]Python编程风格习惯或注意事项

2017-07-28  本文已影响67人  超闲

《Pytho Crash Course》(PCC)和《Learn Python The Hard Way》(LPTHW)都提到了编程的风格问题。这里把这些讨论的内容总结一下。

对齐和空格

命名格式

最常见的有两种命名格式,一种叫做camel case驼峰命名法,比如SuperGoldFactory,另外一种叫underscore case下划线命名法,比如super_gold_factory。Python一般采用驼峰命名法。详见PCC9.6节和LPTHW的EX45。以及stackexchange的讨论

注释

LPTHW提到,注释最好解释why而不是what,因为程序代码已经交代了what/how: "When you write comments, describe why you are doing what you are doing. The code already says how, but why you did things the way you did is more important."

函数取名

LPTHW的EX45提到,建议用命令动作给函数取名,而非用概括功能用词给函数取名。"instead of nameing your functions after what the function does, name it as if it's a command you are giving to the class."

上一篇 下一篇

猜你喜欢

热点阅读