numpy.core.defchararray.swapcase(arr)函數按元素返回字符串的副本,其中大寫字符轉換為小寫,小寫字符轉換為大寫。
用法: numpy.char.swapcase(arr)
參數:
arr :[數組]輸入數組,可以是str或unicode。
返回:[ndarray]輸出str或unicode的小寫數組,具體取決於輸入類型。
代碼1:
# 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 swapcasecased array:", out_arr)
輸出:
input array: ['P4Q R' '4q Rp' 'Q Rp4' 'rp4q'] output swapcasecased array:['p4q r' '4Q rP' 'q rP4' 'RP4Q']
代碼2:
# 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 )
輸出:
input array: ['Geeks' 'For' 'Geeks'] output swapcasecased array:['gEEKS' 'fOR' 'gEEKS']
相關用法
- Numpy string less()用法及代碼示例
- Numpy string isspace()用法及代碼示例
- Python numpy string not_equal()用法及代碼示例
- Numpy string rstrip()用法及代碼示例
- Numpy string ljust()用法及代碼示例
- Numpy string greater()用法及代碼示例
- Numpy string isalpha()用法及代碼示例
- Numpy string islower()用法及代碼示例
- Numpy string istitle()用法及代碼示例
- Numpy string zfill()用法及代碼示例
- Numpy string isupper()用法及代碼示例
- Numpy string lower()用法及代碼示例
- Numpy string title()用法及代碼示例
- Numpy string isdecimal()用法及代碼示例
- Numpy string isdigit()用法及代碼示例
注:本文由純淨天空篩選整理自jana_sayantan大神的英文原創作品 numpy string operations | swapcase() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。