部分代碼。「type」的第一個參數是做什麼的?
In [1]: A = type('B',(), {})
In [2]: a = A()
In [3]: b = B()
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
/home/shabda/<ipython console> in <module>()
NameError: name 'B' is not defined
type
在這裏做的第一個參數是什麼?