在 NumPy 字符串数组中用固定制表符大小替换制表符
要在字符串数组中用固定制表符大小替换制表符,请使用 Python NumPy 中的 **numpy.char.expandtabs()** 方法。“**tabsize**”参数用于将制表符替换为 tabsize 个空格。如果未给出,则默认为 8 个空格。
expandtabs() 函数返回每个字符串元素的副本,其中所有制表符都替换为一个或多个空格,具体取决于当前列和给定的 tabsize。在字符串中出现每个换行符后,列号将重置为零。它不理解其他非打印字符或转义序列。
numpy.char 模块为 numpy.str_ 或 numpy.bytes_ 类型数组提供了一组矢量化字符串操作。
步骤
首先,导入所需的库:
import numpy as np
创建一个一维字符串数组:
arr = np.array(['Bella\tCio', 'Tom\tHanks', 'Monry\tHeist\tSeries'])
显示我们的数组:
print("Array...
",arr)
获取数据类型:
print("
Array datatype...
",arr.dtype)
获取数组的维度:
print("
Array Dimensions...
",arr.ndim)
获取数组的形状:
print("
Our Array Shape...
",arr.shape)
获取数组的元素数量:
print("
Elements in the Array...
",arr.size)
要使用固定制表符大小替换字符串数组中的制表符,请使用 numpy.char.expandtabs() 方法。“tabsize”参数用于将制表符替换为 tabsize 个空格。如果未给出,则默认为 8 个空格。我们将“tabsize”设置为 10,即 10 个空格:
print("
Result (expand tabs)...
",np.char.expandtabs(arr, tabsize = 10))
示例
import numpy as np # Create a One-Dimensional array of string arr = np.array(['Bella\tCio', 'Tom\tHanks', 'Monry\tHeist\tSeries']) # Displaying our array print("Array...
",arr) # Get the datatype print("
Array datatype...
",arr.dtype) # Get the dimensions of the Array print("
Array Dimensions...
",arr.ndim) # Get the shape of the Array print("
Our Array Shape...
",arr.shape) # Get the number of elements of the Array print("
Elements in the Array...
",arr.size) # To replace tab characters by a fixed tabsize in a string array, use the numpy.char.expandtabs() method in Python Numpy # The "tabsize" parameter is used to replace tabs with tabsize number of spaces. If not given defaults to 8 spaces. # We have set the "tabsize" to 10 i.e. 10 spaces print("
Result (expand tabs)...
",np.char.expandtabs(arr, tabsize = 10))
输出
Array... ['Bella\tCio' 'Tom\tHanks' 'Monry\tHeist\tSeries'] Array datatype... <U18 Array Dimensions... 1 Our Array Shape... (3,) Elements in the Array... 3 Result (expand tabs)... ['Bella Cio' 'Tom Hanks' 'Monry Heist Series']
广告