a-讀取網頁資料

#!pip3 install lxml

import pandas as pd # 引用套件並縮寫為 pd

url = 'https://www.wantgoo.com/global'

dfs = pd.read_html(url, flavor="html5lib")

#dfs = pd.read_html('https://www.wantgoo.com/global')

print (dfs )