On this page
numpy.fromstring
numpy.fromstring(string, dtype=float, count=-1, sep='')-
A new 1-D array initialized from text data in a string.
Parameters: -
string : str -
A string containing the data.
-
dtype : data-type, optional -
The data type of the array; default: float. For binary input data, the data must be in exactly this format.
-
count : int, optional -
Read this number of
dtypeelements from the data. If this is negative (the default), the count will be determined from the length of the data. -
sep : str, optional -
The string separating numbers in the data; extra whitespace between elements is also ignored.
Deprecated since version 1.14: Passing
sep='', the default, is deprecated since it will trigger the deprecated binary mode of this function. This mode interpretsstringas binary bytes, rather than ASCII text with decimal numbers, an operation which is better speltfrombuffer(string, dtype, count). Ifstringcontains unicode text, the binary mode offromstringwill first encode it into bytes using either utf-8 (python 3) or the default encoding (python 2), neither of which produce sane results.
Returns: -
arr : ndarray -
The constructed array.
Raises: - ValueError
-
If the string is not the correct size to satisfy the requested
dtypeandcount.
See also
Examples
>>> np.fromstring('1 2', dtype=int, sep=' ') array([1, 2]) >>> np.fromstring('1, 2', dtype=int, sep=',') array([1, 2]) -
© 2005–2019 NumPy Developers
Licensed under the 3-clause BSD License.
https://docs.scipy.org/doc/numpy-1.17.0/reference/generated/numpy.fromstring.html