摘要: 参考,搬运 1. http://python web guide.readthedocs.io/zh/latest/idiom/idiom.html 2. 待定 1. Python支持链式比较 4. 格式化字符时多使用format函数 5. 使用列表或者字典comprehension(推导式) 6. 阅读全文
posted @ 2018-06-05 15:48 Rocin 阅读(362) 评论(0) 推荐(0)
摘要: 概念 EAFP:easier to ask forgiveness than permission LBYL:look before you leap 代码 有点和缺点 EAFP优点是逻辑清晰,Python社区推荐使用。 LBYL拥有很多逻辑控制代码,使得结构混乱。 在高并发情况下,if条件如果是个 阅读全文
posted @ 2018-06-05 15:15 Rocin 阅读(246) 评论(0) 推荐(0)