Return an array with the elements of `self` converted to uppercase. See Also -------- char.upper
(self)
| 2679 | return asarray(translate(self, table, deletechars)) |
| 2680 | |
| 2681 | def upper(self): |
| 2682 | """ |
| 2683 | Return an array with the elements of `self` converted to |
| 2684 | uppercase. |
| 2685 | |
| 2686 | See Also |
| 2687 | -------- |
| 2688 | char.upper |
| 2689 | |
| 2690 | """ |
| 2691 | return asarray(upper(self)) |
| 2692 | |
| 2693 | def zfill(self, width): |
| 2694 | """ |