Thursday, January 22, 2026
HomeLanguagesnumpy string operations | swapcase() function

numpy string operations | swapcase() function

numpy.core.defchararray.swapcase(arr) function return element-wise a copy of the string with uppercase characters converted to lowercase and lowercase characters converted to uppercase.

Syntax: numpy.char.swapcase(arr) Parameters: arr : [ array_like ] Input array which may be str or unicode. Returns : [ndarray] Output lowercased array of str or unicode, depending on input type.

Code #1: 

Python3




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


Output:

input array :  ['P4Q R' '4q Rp' 'Q Rp4' 'rp4q']
output swapcasecased array : ['p4q r' '4Q rP' 'q rP4' 'RP4Q']

  Code #2: 

Python3




# Python Program explaining
# numpy.char.swapcase() function
 
import numpy as geek
 
 
in_arr = geek.array(['Geeks', 'For', 'Geeks'])
 
print ("input array : ", in_arr)
 
out_arr = geek.char.swapcase(in_arr)
print ("output swapcasecased array :", out_arr )


Output:

input array :  ['Geeks' 'For' 'Geeks']
output swapcasecased 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
32475 POSTS0 COMMENTS
Milvus
119 POSTS0 COMMENTS
Nango Kala
6847 POSTS0 COMMENTS
Nicole Veronica
11977 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12064 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7220 POSTS0 COMMENTS
Thapelo Manthata
6933 POSTS0 COMMENTS
Umr Jansen
6912 POSTS0 COMMENTS