numpy.core.defchararray.title (arr)
: This function is used to return an element-wise version of a string or Unicode in uppercase letters. Capitalized words begin with uppercase characters, all other characters — 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:
|
Exit:
input array: [’p4q r’’ 4q rp’ ’q rp4’’ rp4q’] output titled array: [’ P4Q R’ ’4Q Rp’’ Q Rp4’’ Rp4Q’]
Code # 2:
|
Output :
input array: [’geeks’’ for’ ’geeks’] output titled array: [’Geeks’’ For’ ’Geeks’]