numpy.fromstring()函数创建一个新的一维数组,该数组从字符串中的文本数据初始化。
用法: numpy.fromstring(string, dtype = float, count = -1, sep = ‘ ‘)
参数:
string:[str]包含数据的字符串。
dtype:[数据类型,可选]数组的数据类型。默认数据类型为float。
count:[int,可选]要读取的项目数。如果为负(默认值),则将根据数据的长度确定计数。
sep:[str,可选]字符串,用于分隔数据中的数字。
返回:[ndarray]返回构造的数组。
代码1:
Python3
# Python program explaining
# numpy.fromstring() function
# importing numpy as geek
import numpy as geek
gfg = geek.fromstring('1 2 3 4 5', dtype = float, sep = ' ')
print(gfg)
输出:
[1. 2. 3. 4. 5.]
代码2:
Python3
# Python program explaining
# numpy.fromstring() function
# importing numpy as geek
import numpy as geek
gfg = geek.fromstring('1 2 3 4 5 6', dtype = int, sep = ' ')
print(gfg)
输出:
[1 2 3 4 5 6]
相关用法
- Python numpy.ma.where()用法及代码示例
- Python numpy.ix_()用法及代码示例
- Python numpy.cov()用法及代码示例
- Python numpy.roots()用法及代码示例
- Python numpy.correlate()用法及代码示例
- Python numpy.nanstd()用法及代码示例
- Python numpy.imag()用法及代码示例
- Python numpy.real_if_close()用法及代码示例
- Python numpy.interp()用法及代码示例
- Python numpy.real()用法及代码示例
- Python numpy.indices()用法及代码示例
- Python numpy.issubdtype()用法及代码示例
- Python numpy.issubsctype()用法及代码示例
- Python numpy.issctype()用法及代码示例
- Python numpy.typename()用法及代码示例
- Python numpy.find_common_type()用法及代码示例
- Python numpy.issubclass_()用法及代码示例
- Python numpy.finfo()用法及代码示例
注:本文由纯净天空筛选整理自sanjoy_62大神的英文原创作品 numpy.fromstring() function – Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。