Return an array with the elements of `self` converted to uppercase. See Also -------- char.upper
(self)
| 1169 | return asarray(translate(self, table, deletechars)) |
| 1170 | |
| 1171 | def upper(self): |
| 1172 | """ |
| 1173 | Return an array with the elements of `self` converted to |
| 1174 | uppercase. |
| 1175 | |
| 1176 | See Also |
| 1177 | -------- |
| 1178 | char.upper |
| 1179 | |
| 1180 | """ |
| 1181 | return asarray(upper(self)) |
| 1182 | |
| 1183 | def zfill(self, width): |
| 1184 | """ |