Friday, April 3, 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
32512 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6886 POSTS0 COMMENTS
Nicole Veronica
12007 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12100 POSTS0 COMMENTS
Shaida Kate Naidoo
7015 POSTS0 COMMENTS
Ted Musemwa
7259 POSTS0 COMMENTS
Thapelo Manthata
6972 POSTS0 COMMENTS
Umr Jansen
6960 POSTS0 COMMENTS