4

使用isinstance()改变了类的类型dict 为什么会出现这种情况?我知道使用内置函数会阻止,但我想更好地理解为什么会发生这种情况。

250     def printPretty(records,num,title='Summary:'):
251         import pdb; pdb.set_trace()
252         if isinstance(records, list):
253             print ("\n{}\n{}".format(title.center(120),"="*120))
254             table = list()
255             for i in records:
...
263         elif isinstance(records, dict):
264  ->         for key in records:
265                 if isinstance(records[key], Param):
266                     for i in records[key]:
267                         print (i)
268                 print ("")
269     
(Pdb) type(records)
<class 'dict'>
(Pdb) type(dict)
<class 'type'><b>
4

1 回答 1

3

我认为您的困惑在于type(dict) != dict. 让我们完全放弃您的示例,除了最后两行,我将使用交互式 python 来呈现。

>>> type(dict)
<type 'type'>
>>> type(dict())
<type 'dict'>

这是因为dict不是字典,而是字典的类型。 dict()or {}(or {1:2, ...}) 是字典的实例。这些实例的类型为dict,并且满足isinstance(___, dict)

于 2017-05-19T23:43:35.513 回答