Wednesday, December 10, 2025
HomeLanguagesnumpy string operations | upper() function

numpy string operations | upper() function

numpy.core.defchararray.upper(arr): function is used to return an array with the elements converted to uppercase.

Parameters:
arr : [ array_like ] Input array which may be str or unicode.

Returns : [ndarray] Output uppercased array of str or unicode, depending on input type.

Code #1:




# Python Program explaining
# numpy.char.upper() function 
  
import numpy as geek 
  
  
in_arr = geek.array(['p4q r', '4q rp', 'q rp4', 'rp4q'])
print ("input array : ", in_arr)
  
out_arr = geek.char.upper(in_arr)
print ("output uppercased array :", out_arr)


Output:

input array :  ['p4q r' '4q rp' 'q rp4' 'rp4q']
output uppercased array : ['P4Q R' '4Q RP' 'Q RP4' 'RP4Q']

 
Code #2:




# Python Program explaining
# numpy.char.upper() function 
  
import numpy as geek 
  
  
in_arr = geek.array(['neveropen', 'for', 'neveropen'])
  
print ("input array : ", in_arr)
  
out_arr = geek.char.upper(in_arr)
print ("output uppercased array :", out_arr )


Output:

input array :  ['neveropen' 'for' 'neveropen']
output uppercased array : ['GEEKS' 'FOR' 'GEEKS']

 

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32440 POSTS0 COMMENTS
Milvus
104 POSTS0 COMMENTS
Nango Kala
6810 POSTS0 COMMENTS
Nicole Veronica
11950 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12022 POSTS0 COMMENTS
Shaida Kate Naidoo
6942 POSTS0 COMMENTS
Ted Musemwa
7193 POSTS0 COMMENTS
Thapelo Manthata
6889 POSTS0 COMMENTS
Umr Jansen
6880 POSTS0 COMMENTS