numpy.char.splitlines() 函数
此函数返回数组中的元素列表,在行边界处断开。
import numpy as np print np.char.splitlines('hello\nhow are you?') print np.char.splitlines('hello\rhow are you?')
它的输出结果如下 −
['hello', 'how are you?'] ['hello', 'how are you?']
'\n', '\r', '\r\n' 可以作为行边界。