Recent Posts

Python 3: Keyword-Only Arguments

less than 1 minute read

参 Effective Python Item 21: Enforce Clarity with Keyword-Only Arguments 和 PEP 3102 – Keyword-Only Arguments。

SemiBoost

5 minute read

The inconsistency among the unlabeled examples:

Python: except

less than 1 minute read

简单说一下。except 可以接一个 tuple 表示捕捉多种类型的异常,也可以不带任何参数表示捕捉 everything(当然这是一个 anti-pattern)。