爬蟲過程中,採集的資料常以str
或float
存入資料庫;
遇到含小數點的文字
,需要轉換成浮點型
xpath()
或re.findall()
提取資訊返回列表,列表可能為空
,不便存進資料庫。
a =
float
('-1.21'
)print
(a)
import numpy as np
ls =
['1.2'
,'3'
,'-0.5'
]array = np.array(ls)
array = array.astype(
float
)print
(array)
import pandas as pd
d =df = pd.dataframe(d)
num = pd.to_numeric(df[
'num'])
print
(num)
ls1 =
ls2 =
[' a'
,'b'
]a = ls1[0]
.strip(
)if ls1 else
''print
(a)a = ls2[0]
.strip(
)if ls2 else
''print
(a)
ls1 =
ls2 =
['\ta'
,'\nb\xa0'
]a =
'|'.join(ls1)
print
(a)a =
'|'.join(
[i.strip(
)for i in ls2]
)print
(a)
Python 列表元素字串轉浮點
在網路爬蟲或者讀取檔案中的資料時,很多時候讀取出來的數值是字串形式的,這些字串形式的資料並不能用來作計算或者更深入的操作,因此我們需要把他們轉換為數值的形式。假設,這裡有乙個以字串形式儲存數值的列表,具體如下 a 2 3.5 10 88 32.66 我們需要將其轉換為浮點的形式,最簡單粗暴直接的方法...
Python 列表轉字串
問題描述 對於長度為5位的乙個01串,每一位都可能是0或1,一共有32種可能。它們的前幾個是 請按從小到大的順序輸出這32種01串。輸入格式 本試題沒有輸入。輸出格式 輸出32行,按從小到大的順序每行乙個長度為5的01串。樣例輸出 00000 00001 00010 00011 以下部分省略 實現 ...
Python 字串轉列表,列表轉字串
一般計算字串的數量,用len 方法就能實現,例如 str string len str 6 s,t,r,i,n,g 但是,當要計算單詞的數量時,該怎麼辦?sentence hello world and python len sentence 24 問題 一段訊息裡面的單詞數計數。寫乙個函式,當單詞...