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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。