numpy字符串操作isspace()函数
numpy.core.defchararray.isspace(arr)函数在字符串中只有空白字符且至少有一个字符的情况下对每个元素返回true,否则返回false。
语法: numpy.core.isspace(arr)
参数:
arr : 类似于str或unicode的数组。
返回: [ndarray] 输出布尔的数组。
代码#1:
# Python program explaining
# numpy.char.isspace() method
import numpy as geek
# input arrays not containing any space
in_arr = geek.array([ 'Geeksforgeeks', 'Codechef'] )
print ("Input array : ", in_arr)
out_arr = geek.char.isspace(in_arr)
print ("Output array: ", out_arr)
输出:
Input array : ['Geeksforgeeks' 'Codechef']
Output array: [False False]
代码#2:
# Python program explaining
# numpy.char.isspace() method
import numpy as geek
# input arrays containing string along with space
in_arr = geek.array([ 'Geeks\nfor\ngeeks', 'Code\tchef'] )
print ("Input array : ", in_arr)
out_arr = geek.char.isspace(in_arr)
print ("Output array: ", out_arr)
输出:
Input array : ['Geeks\nfor\ngeeks' 'Code\tchef']
Output array: [False False]
代码#3:
# Python program explaining
# numpy.char.isspace() method
import numpy as geek
# input arrays containing only white space
in_arr = geek.array([ '\n', '\t', ' ', '\n\t '] )
print ("Input array : ", in_arr)
out_arr = geek.char.isspace(in_arr)
print ("Output array: ", out_arr)
输出:
Input array : ['\n' '\t' ' ' '\n\t ']
Output array: [ True True True True]