Lines Matching full:first
16 >>> n1.first
24 >>> n1.first = 'will'
30 >>> del n1.first
34 AttributeError: first
35 >>> n1.first
38 AttributeError: first
39 >>> n1.first = 'drew'
40 >>> n1.first
49 >>> n1.first = 42
55 >>> n2.first
59 >>> del n2.first
60 >>> n2.first
63 AttributeError: first
64 >>> n2.first
67 AttributeError: first
71 AttributeError: first
89 >>> del n1.first
92 TypeError: Cannot delete the first attribute
93 >>> n1.first = 42
96 TypeError: The first attribute value must be a string
97 >>> n1.first = 'will'
114 >>> n1.first
122 >>> n1.first = 'will'
128 >>> del n1.first
132 AttributeError: first
133 >>> n1.first
136 AttributeError: first
137 >>> n1.first = 'drew'
138 >>> n1.first
147 >>> n1.first = 42
156 >>> n2.first
160 >>> del n2.first
161 >>> n2.first
164 AttributeError: first
165 >>> n2.first
168 AttributeError: first
172 AttributeError: first
188 >>> n2.first = l
189 >>> n2.first