返回元素中各行组成的列表,在 NumPy 中按行边界分割
要返回元素中各行组成的列表,按行边界分割,请在 Python NumPy 中使用 **numpy.char.splitlines()** 方法。第一个参数是输入数组。
keepends 参数表示除非指定 keepends 为 True,否则换行符不包含在结果列表中。splitlines() 函数返回一个列表对象数组。
numpy.char 模块为 numpy.str_ 或 numpy.bytes_ 类型数组提供了一组矢量化的字符串操作。
步骤
首先,导入所需的库:
import numpy as np
创建一个数组:
arr = np.array(["Bella
Cio", "Brad
Pitt", "Katie
Perry"])
显示我们的数组:
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.splitlines() 方法:
print("
Result...
",np.char.splitlines(arr))
示例
import numpy as np # Create an array arr = np.array(["Bella
Cio", "Brad
Pitt", "Katie
Perry"]) # 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 return a list of the lines in the element, breaking at line boundaries, use the numpy.char.splitlines() method in Python Numpy # The 1st parameter is the input array print("
Result...
",np.char.splitlines(arr))
输出
Array... ['Bella
Cio' 'Brad
Pitt' 'Katie
Perry'] Array datatype... <U11 Array Dimensions... 1 Our Array Shape... (3,) Elements in the Array... 3 Result... [list(['Bella', 'Cio']) list(['Brad', 'Pitt']) list(['Katie', 'Perry'])]
广告