Saturday, November 15, 2025
HomeLanguagesnumpy string operations | title() function

numpy string operations | title() function

numpy.core.defchararray.title(arr): function is used to Return element-wise title cased version of string or unicode.Title case words start with uppercase characters, all remaining cased characters are lowercase.

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

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

Code #1:




# Python Program explaining
# numpy.char.title() 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.title(in_arr)
print ("output titled array :", out_arr)


Output:

input array :  ['p4q r' '4q rp' 'q rp4' 'rp4q']
output titled array : ['P4Q R' '4Q Rp' 'Q Rp4' 'Rp4Q']

 
Code #2:




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


Output:

input array :  ['neveropen' 'for' 'neveropen']
output titled 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
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11917 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6890 POSTS0 COMMENTS
Ted Musemwa
7143 POSTS0 COMMENTS
Thapelo Manthata
6838 POSTS0 COMMENTS
Umr Jansen
6840 POSTS0 COMMENTS