特别是,我在看这段代码:

import sqlite3
from sqlite3 import IntegrityError
[IntegrityError]


我想知道:[IntegrityError]有什么特殊含义吗?

IntegrityError只是sqlite3程序包中定义的一个类,当然,我自己的解释是[IntgrityError]只是一个将其放在列表中的表达式,但在我正在研究的一段代码中就有了。可能是拼写错误吗?还是我缺少一些神奇的语法糖解释?

最佳答案

from sqlite3 import IntegrityError确保sqlite3的DB-API 2.0(PEP-249)版本在系统上,并且后续行[IntegrityError]抑制短绒。

关于python - python中“from bar import foo”之后,“[foo]”有什么特殊含义吗? (也许特定于python2),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56582770/

10-16 07:39