Lines Matching full:what
40 of type <class>. We can check this by asking Python: "what is A?"
42 >>> A # What is A?
53 >>> a # What is 'a'?
57 >>> b # What is 'b'?
70 >>> a.__class__ # What is the class of 'a'?
72 >>> b.__class__ # What is the class of 'b'?
95 >>> B # What is B?
131 Hence, what they want is the following:
147 And here we go for another round of what I said in section 1 -- Classes.
172 >>> M # What is M?
185 >>> A # What is 'A'?
189 >>> B # What is 'B'?
203 >>> A.__metaclass__ # What is the meta-class of A?
205 >>> A.__metaclass__ # What is the meta-class of B?
228 >>> N # What is N?