python使用numpy库, 去除多余空格
时间: 2023-06-02 08:05:20 浏览: 371
可以使用numpy中的函数trim_zeros来去除一维数组两端的零值,也可以使用strip函数去除字符串两端的空格。具体方法如下:
使用trim_zeros函数去除一维数组两端的零值:
import numpy as np
a = np.array([0, 0, 1, 2, 0, 0])
b = np.trim_zeros(a)
print(b) # 输出 [1 2]
使用strip函数去除字符串两端的空格:
text = " hello world! "
new_text = text.strip()
print(new_text) # 输出 "hello world!"
阅读全文