当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python numpy.fromstring()用法及代码示例


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]

相关用法


注:本文由纯净天空筛选整理自sanjoy_62大神的英文原创作品 numpy.fromstring() function – Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。