溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何在python中把字符串轉(zhuǎn)化成numpy浮點(diǎn)數(shù)組

發(fā)布時(shí)間:2021-02-26 16:24:43 來(lái)源:億速云 閱讀:997 作者:戴恩恩 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹了如何在python中把字符串轉(zhuǎn)化成numpy浮點(diǎn)數(shù)組,此處通過(guò)實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考價(jià)值,需要的朋友可以參考下:

Python主要用來(lái)做什么

Python主要應(yīng)用于:1、Web開(kāi)發(fā);2、數(shù)據(jù)科學(xué)研究;3、網(wǎng)絡(luò)爬蟲(chóng);4、嵌入式應(yīng)用開(kāi)發(fā);5、游戲開(kāi)發(fā);6、桌面應(yīng)用開(kāi)發(fā)。

不同的數(shù)字之間使用 空格“ ”,“$”,"*"等隔開(kāi),支持帶小數(shù)點(diǎn)的字符串

NumArray=str2num(LineString,comment='#')

將字符串中的所有非Double類(lèi)型的字符全部替換成空格

以'#'開(kāi)頭直至行尾的內(nèi)容被清空

返回一維numpy.array數(shù)組

如何在python中把字符串轉(zhuǎn)化成numpy浮點(diǎn)數(shù)組

import numpy
import scipy
def str2num(LineString,comment='#'):
 
  from io import StringIO as StringIO
  import re,numpy
 
  NumArray=numpy.empty([0],numpy.int16)
  NumStr=LineString.strip()
  #~ ignore comment string
  for cmt in comment:

    CmtRe=cmt+'.*$'
    NumStr=re.sub(CmtRe, " ", NumStr.strip(), count=0, flags=re.IGNORECASE)
 
  #~ delete all non-number characters,replaced by blankspace.
  NumStr=re.sub('[^0-9.e+-]', " ", NumStr, count=0, flags=re.IGNORECASE)
 
  #~ Remove incorrect combining-characters for double type.
  NumStr=re.sub('[.e+-](?=\s)', " ", NumStr.strip(), count=0, flags=re.IGNORECASE)
  NumStr=re.sub('[.e+-](?=\s)', " ", NumStr.strip(), count=0, flags=re.IGNORECASE)
  NumStr=re.sub('[e+-]$', " ", NumStr.strip(), count=0, flags=re.IGNORECASE)
  NumStr=re.sub('[e+-]$', " ", NumStr.strip(), count=0, flags=re.IGNORECASE)
 
  if len(NumStr.strip())>0:
    StrIOds=StringIO(NumStr.strip())
    NumArray= numpy.genfromtxt(StrIOds)
 
  return NumArray


if __name__ == "__main__":
  str = input("Enter your input: ");
  donser=str2num(str)
  print(donser)

補(bǔ)充知識(shí):Python 將numpy array由浮點(diǎn)型轉(zhuǎn)換為整型

——使用numpy中的astype()方法可以實(shí)現(xiàn),如:

如何在python中把字符串轉(zhuǎn)化成numpy浮點(diǎn)數(shù)組

到此這篇關(guān)于如何在python中把字符串轉(zhuǎn)化成numpy浮點(diǎn)數(shù)組的文章就介紹到這了,更多相關(guān)如何在python中把字符串轉(zhuǎn)化成numpy浮點(diǎn)數(shù)組的內(nèi)容請(qǐng)搜索億速云以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持億速云!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI