我需要提出异常。在我的具体案例中NotImplementedError
。
有什么区别
Raise NotImplementedError
和raise NotImplementedError()
。
哪个被认为是更好的做法?为什么呢?
答案 0 :(得分:2)
raise X
和raise X()
之间没有区别。最好使用第二种形式并传递raise RuntimeError('bad argument')
之类的消息。如果没有像你的情况那样有用的消息,我会使用第一种语法。这是一个品味问题。
第一种形式是旧样式的提升(在Python3中无效):
raise X, 'a'
与
相同raise X('a')