我使用pandas通過使用pd.read_html(url)來讀取html,但它總是顯示類型錯誤。你能請教我如何解決它? 我用anaconda3與Python 3.6我在pandas read_html()中得到了類型錯誤問題,
__init__() got an unexpected keyword argument 'encoding'
我的代碼是:
import pandas as pd
df=pd.read_html('http://isin.twse.com.tw/isin/C_public.jsp?strMode=2',encoding='big5hkscs',header=0)
那麼什麼是不明確的錯誤:它說,你的'編碼= ...'不能被處理。 –
工作正常,當我嘗試它(macOsx,Python3.6,pandas 0.20.1)。你是否安裝了'bs4','xlmd'和'html5lib'? – sgDysregulation
我的python版本是3.6.1(64位),熊貓是0.20.3。我檢查了我的anaconda,它包括bs4,xlmd和html5lib。 –