以下是Python NumPy中如何将数据转为int型的攻略:
Python NumPy中如何将数据转为int型
在NumPy中,可以使用astype()函数将数据转换为int型。以下是一些实现方法:
将float型数据转为int型
可以使用astype()函数将float型数据转为int型。以下是一个示例:
import numpy as np
a = np.array([1.2, 2.3, 3.4])
b = a.astype(int)
print(b)
输出:
[1 2 3]
将string型数据转为int型
可以使用astype()函数将string型数据转为int型。以下是一个示例:
import numpy as np
a = np.array(['1', '2', '3'])
b = a.astype(int)
print(b)
输出:
[1 2 3]
总结
这就是Python NumPy中如何将数据转为int型的攻略。可以使用astype()函数将数据转换为int型,可以将float型数据转为int型,将string型数据转为int型等。希望这篇文章能够帮助您更好地理解Python NumPy中将数据转为int型的方法。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:python numpy.ndarray中如何将数据转为int型 - Python技术站