Python numpy.fromstring()函数
numpy.fromstring()函数根据字符串中的文本数据创建一个新的一维数组。
语法: numpy.fromstring(string, dtype = float, count = -1, sep = ‘ ‘)
参数 :
string : [str] 一个包含数据的字符串。
dtype : [data-type, optional] 阵列的数据类型。默认的数据类型是float。
count : [int, optional] 要读取的项目数量。如果是负数(默认),计数将由数据的长度决定。
sep : [str, optional] 数据中分隔数字的字符串。
返回 : [ndarray] 返回构建的数组。
代码 #1 :
# 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 :
# 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]