Saturday, October 25, 2025
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
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS